是否有可能(以及如何)在方法中匿名使用聲明變量?沒有在代碼本身中使用他們的名字。我必須聲明它們的名稱(用於可讀性+調試)。但我想不使用它們。C#中的匿名變量用法?
我希望它可以像通過反射列出一個類的所有方法名稱。
例子:
private static void TestVars()
{
string dsjkfd4378957439898 = "hello world";
string hgf43789 = "hello world2";
string ntgdklf4589 = "hello world3";
// more strings
// print names of ALL string variables above (and their values)
// like this but without knowing the names of the string variables
Console.WriteLine("dsjkfd4378957439898" + " = " + dsjkfd4378957439898);
// ...
}
請詳細說明您的問題。很難理解你問什麼。 – Reniuz 2014-09-24 06:31:06
你的目標是什麼? – 2014-09-24 06:31:18
爲什麼不使用所需類型或對象的一組元素,如果您將使用不同的... – blfuentes 2014-09-24 06:33:06