1
0
mirror of https://github.com/twiglet/cs2j.git synced 2025-01-18 13:15:17 +01:00

32 lines
494 B
C#
Raw Normal View History

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