トップページ >  C# >  C#の定数
初版2012/06/01: 最終更新日2012/06/01
  C#の定数
目次
C#の定数
C#の定数
C#の定数はconstキーワードを指定して定数を宣言します。
以下、サンプルです。

using System;

class a{
    static void Main(){
        const string str = "abc";
        Console.WriteLine(str);
    }
}
定数のため、宣言後に代入をするとエラーとなります。
以下、サンプルです。
using System;

class a{
    static void Main(){
        const string str = "abc";
        str = "def";
        Console.WriteLine(str);
    }
}
上記でコンパイルすると以下のようなエラーがでます。

The left-hand side of an assignment must be a variable,property or indexer