C# 获取方法内参数名称

2021-07-16 03:20

阅读:404

标签:post   body   article   var   param   return   ret   来源   bsp   

 public partial class Main : Form  
    {  
        public Main()  
        {   
            foreach(var parameter in typeof(Main).GetMethod("fnAAA").GetParameters())  
            {  
                 Console.WriteLine(parameter.Name);  
            }  
            /* 
            a 
            b 
            c 
             */  
        }  
         
public string fnAAA(string a, string b, string c)  
{  
return "";  
}  

 

来源:http://blog.csdn.net/q107770540/article/details/6053218

C# 获取方法内参数名称

标签:post   body   article   var   param   return   ret   来源   bsp   

原文地址:https://www.cnblogs.com/shy1766IT/p/8227791.html


评论


亲,登录后才可以留言!