S Stuart Gerchick Nov 10, 2004 #1 How do static constructors work in a situation with 2 or more classes that have a cycle between them
J Jon Skeet [C# MVP] Nov 10, 2004 #2 Stuart Gerchick said: How do static constructors work in a situation with 2 or more classes that have a cycle between them Click to expand... See section 9.5.3.3 of the CLI spec.
Stuart Gerchick said: How do static constructors work in a situation with 2 or more classes that have a cycle between them Click to expand... See section 9.5.3.3 of the CLI spec.
J Jeti [work] Nov 10, 2004 #3 How do static constructors work in a situation with 2 or more classes that have a cycle between themz Click to expand... static constructor will be invoked only once - first time you mention class name in your code.... At least i think so... correct me if i'm wrong...
How do static constructors work in a situation with 2 or more classes that have a cycle between themz Click to expand... static constructor will be invoked only once - first time you mention class name in your code.... At least i think so... correct me if i'm wrong...