**static constructors

  • Thread starter Thread starter Stuart Gerchick
  • Start date Start date
S

Stuart Gerchick

How do static constructors work in a situation with 2 or more classes
that have a cycle between them
 
Stuart Gerchick said:
How do static constructors work in a situation with 2 or more classes
that have a cycle between them

See section 9.5.3.3 of the CLI spec.
 
How do static constructors work in a situation with 2 or more classes
that have a cycle between themz

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...
 
Back
Top