mirror of
https://github.com/AlexMacocian/WpfExtended.git
synced 2026-07-21 01:19:29 +00:00
16 lines
266 B
C#
16 lines
266 B
C#
using System;
|
|
|
|
namespace WpfExtended.SourceGeneration.Tests
|
|
{
|
|
public class Launcher
|
|
{
|
|
[STAThread]
|
|
public static int Main()
|
|
{
|
|
var cls = new Class1();
|
|
cls.TestValues();
|
|
return 0;
|
|
}
|
|
}
|
|
}
|