internal static class c# code example
Example 1: static class constructor c#
class SimpleClass
{
// Static variable that must be initialized at run time.
static readonly long baseline;
// Static constructor is called at most one time, before any
// instance constructor is invoked or member is accessed.
static SimpleClass()
{
baseline = DateTime.Now.Ticks;
}
}
Example 2: internal c#
// Assembly1.cs
// Compile with: /target:library
internal class BaseClass
{
public static int intM = 0;
}