15 lines
280 B
C#
15 lines
280 B
C#
using System.Windows;
|
|
|
|
namespace Memory
|
|
{
|
|
internal partial class Program
|
|
{
|
|
[STAThread]
|
|
public static void Main()
|
|
{
|
|
Application app = new();
|
|
MainWindow mainWindow = new();
|
|
app.Run(mainWindow);
|
|
}
|
|
}
|
|
} |