Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
このコードの何が問題になっていますか? 次のエラーが表示されます:「'....' に代入される式は定数でなければなりません」
public const string ConnectionString = System.IO.File.ReadAllText(@"D:\connection.ini");
定数値はコンパイル時に既知である必要があります。代わりに readonly を使用してください。同様の効果があります。