Search Results

3
votes

Anonymous types

a is a string property on your anonymous type private void button4_Click(object sender, EventArgs e) { test((new { a = "asd" }).a); } private void test(string a) { } …