如何声明名称为“ operator”的变量?

时间:2019-09-30 22:14:50

标签: c#

如何声明名称为“ operator”的变量?

public string operator;

I see the below error, click here to see the picture

2 个答案:

答案 0 :(得分:2)

使用Intent intent = new Intent(android.content.Intent.ACTION_VIEW, Uri.parse("http://maps.google.com/maps")); startActivity(intent);

@前缀使您可以将保留字用作变量名。

答案 1 :(得分:2)

您可以通过在标识符的名称前加上@operator来使用任何保留字:var @operator = "+"; var @event = new { name = "Burning man" }; var @var = 23; var @enum = new List { 1, 2, 3 };

{{1}}

不用说,这并没有太大的可读性,但是如果您认为适合您的情况,则可以使用它。