mirror of
https://github.com/twiglet/cs2j.git
synced 2025-01-18 13:15:17 +01:00
32 lines
494 B
C#
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++;
|
|
}
|
|
}
|
|
}
|
|
|