包含破折号的方法名称?

时间:2010-01-14 10:38:09

标签: c# asp.net asp.net-mvc

如何创建名称中包含短划线的方法?

public void my-method-name()
{
}

2 个答案:

答案 0 :(得分:4)

你做不到。使用ActionNameAttribute

答案 1 :(得分:2)

你做不到。它违反了标识符规范。但是你可以把其他Unicode字符集。例如,你可以给出一个函数名称。

void 中國話 (int i){
}
在.NET中

,您可以使用_ underscore而不是 - 。