C# 获取方法内参数名称

 

 

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 ""; }  

 

已经不是第一次在论坛内见有网友提出这个问题了

现总结 出来  以防下次备用

你可能感兴趣的:(【06.,Others】)