CS1056 error occurs when building with Visual Studio 2015

  • Thread starter Thread starter Noriho
  • Start date Start date
N

Noriho

Guest
I used the Japanese dot "・" as the variable name.
There was no error when building with VisualStudio2012 C#.


string 中項目・小項目;


When I build this source with Visual Studio 2015 C#, I get a CS1056 error at the dot "・" character.

It seems that the dot "・" cannot be used in the variable name in VisualStudio2015.
Is there a way to make it available?
For example, Using MSBuild options...

I'm using these variables as members of a JSON data class, so I don't want to rename them.

Thank you.


(In Japanese)

--------------------------

私は、変数名として日本語のドット"・"を使用していました。
VisualStudio2012 C#でビルドするとエラーにはなりませんでした。


string 中項目・小項目;


このソースをVisualStudio2015 C#でビルドすると、ドット"・"の文字のところで、CS1056エラーになってしまいました。

VisualStudio2015ではドット"・"を変数名には使えないようなのですが、使えるようにする方法はないでしょうか?
例えば、MSBuildのオプションなど。

これらの変数は、JSONのデータクラスメンバーとして使用しているため、名前を変更したくありません。

よろしくお願いいたします。

Continue reading...
 
Back
Top