mirror of
https://github.com/twiglet/cs2j.git
synced 2025-01-18 13:15:17 +01:00
24 lines
332 B
C#
24 lines
332 B
C#
|
using System;
|
||
|
namespace Tester.Misc
|
||
|
{
|
||
|
public class Misc
|
||
|
{
|
||
|
public Misc ()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
private int TestProperty
|
||
|
{
|
||
|
get;set;
|
||
|
}
|
||
|
|
||
|
public void Init (string[] args)
|
||
|
{
|
||
|
// Test incrementing a property
|
||
|
TestProperty = 0;
|
||
|
TestProperty++;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|