Possible Duplicates:
What does the @ symbol before a variable name mean in C#?
What's the use/meaning of the @ character in variable names in C#?方法聲明中參數名稱之前'@'char是什麼意思?
嗨,
我有一個快速的問題。方法聲明中的參數名稱前的'@'char是什麼意思?如下所示:
protected void Method1(Type1 @arg1, Type2 arg2)
...
我使用c#與.net 3.5。
謝謝。
這是一個轉義字符,它允許您使用保留字作爲標識符。這個問題被問到很多。請參閱:http://stackoverflow.com/questions/429529/what-does-the-symbol-before-a-variable-name-mean-in-c – 2011-01-19 14:18:15