mirror of
https://github.com/PacktPublishing/Learn-WinUI-3-Second-Edition.git
synced 2026-06-20 12:23:09 +00:00
14 lines
274 B
C#
14 lines
274 B
C#
namespace UnoMediaCollection.Wasm
|
|
{
|
|
public class Program
|
|
{
|
|
private static App? _app;
|
|
|
|
public static int Main(string[] args)
|
|
{
|
|
Microsoft.UI.Xaml.Application.Start(_ => _app = new AppHead());
|
|
|
|
return 0;
|
|
}
|
|
}
|
|
} |