Question: Which of the following code samples show a valid static constructor?
A
B
C
D
class Sample { public static Sample() { } }
B
class Sample { static Sample() { } }
C
class Sample { static Sample(int value) { } }
D
class Sample { static void Sample() { } }
Note: Not available