Is there a standard way for .NET class loaders to work?
Say I compile this code:
Option Strict On : Option Explicit On
Module Module1
Sub Main()
System.Diagnostics.Debug.WriteLine("Main")
Dim g = C.A
End Sub
End Module
Public Class C
Shared Sub New()
System.Diagnostics.Debug.WriteLine("Init C")
End Sub
Shared Property A As New A
End Class
Public Class A
Shared Sub New()
System.Diagnostics.Debug.WriteLine("Init A")
End Sub
Public Sub New()
System.Diagnostics.Debug.WriteLine("A Constructor")
End Sub
End Class
Can I guarantee the compiled code will (in all implemented platforms) have the following output?
Main
Init A
A Constructor
Init C
beforefieldinit, otherwise the type initializer must be called at a later time as indicated by the spec) – Ben Voigt Jun 11 '11 at 13:58