1
0
mirror of https://github.com/twiglet/cs2j.git synced 2025-01-18 13:15:17 +01:00
2011-07-19 11:04:08 +02:00

32 lines
494 B
C#

using System;
using System.Collections.Generic;
namespace Tester.Misc
{
public class Misc
{
public Misc ()
{
}
public void GroupConfiguration(IEnumerable<Misc> groups)
{
IList<Misc> Groups = new List<Misc>(groups);
}
private int TestProperty
{
get;set;
}
public void Init (string[] args)
{
// Test incrementing a property
TestProperty = 0;
TestProperty++;
}
}
}