17 lines
170 B
C#
17 lines
170 B
C#
|
namespace System
|
||
|
{
|
||
|
public struct Int32
|
||
|
{
|
||
|
public int Value;
|
||
|
}
|
||
|
|
||
|
class Program
|
||
|
{
|
||
|
public static void Main ()
|
||
|
{
|
||
|
Int32 a = new Int32 ();
|
||
|
a.Value = 6;
|
||
|
}
|
||
|
}
|
||
|
}
|