public class MyClass
{
private static readonly int _intValue = 123;
private static readonly string _stringValue = "one two three";
static MyClass() // Empty static constructor
{
}
public MyClass()
{
// instance init
}
public int IntValue
{
get { return _intValue; }
}
public string StringValue
{
get { return _stringValue; }
}
}
ASKER
ASKER
The .NET Framework is not specific to any one programming language; rather, it includes a library of functions that allows developers to rapidly build applications. Several supported languages include C#, VB.NET, C++ or ASP.NET.
TRUSTED BY
unsafe Thread might be when there is more than one thread.