标签: c# oop clr
public class ImplicitTypeConstructor { public static int implicitInt = 10; } public class ExplicitTypeConstructor { public static int explicitInt; static ExplicitTypeConstructor() { explicitInt = 10; } }
这些实现如何相互不同?