mirror of
https://github.com/twiglet/cs2j.git
synced 2025-01-18 13:15:17 +01:00
27 lines
686 B
C#
27 lines
686 B
C#
using System;
|
|
namespace Tester
|
|
{
|
|
public class MainClass
|
|
{
|
|
public static void Main (string[] args)
|
|
{
|
|
|
|
//Tester.DelegateUser.DelegateTest<int>.DelMain(args);
|
|
|
|
//Tester.RefOut.RefOutTest.RefOutMain(args);
|
|
|
|
//Tester.PartialUser.PartialMain(args);
|
|
|
|
//Tester.Delegates.EventHandler.Sample.EHMain();
|
|
|
|
// Tester.Misc.RenameTest.RNMain("hello world");
|
|
//Tester.Misc.Sorter.Example.SorterMain();
|
|
//Tester.Misc.RegexTest.RegexMain();
|
|
Twiglet.Sample.Delegate.DelegateSampler.DelegateSamplerMain();
|
|
Twiglet.Sample.Event.EventSampler.EventSamplerMain(args);
|
|
Console.WriteLine("Finished");
|
|
}
|
|
}
|
|
}
|
|
|