0

可以在 C# 中创建一个所有字段和属性默认为 const 的类吗?

  • 想象的例子 *

public class foo : const /* or readonly */ { public int baa = 3; }

4

1 回答 1

0

不,这不对。

您可以将类设为静态,但这会强制所有成员都是静态的。

前任:

public static class Constants
{
    public const int SomeId = 123;
    public const string SomeName = "foo";

    public static readonly DateTime myDateTime = new DateTime();

    public string notConstant = "test"; //does not compile
}
于 2012-06-06T15:22:27.440 回答