123456789101112131415161718 |
- using System;
- using Bmp.Poc.PoCs;
- using Console = System.Console;
- namespace Bmp.Poc;
- internal static class Program
- {
- [STAThread]
- public static void Main(string[] args)
- {
- PocAsioDFFPlay.MainFunc();
- Console.WriteLine();
- Console.Write("Press ENTER to exit...");
- Console.ReadLine();
- }
- }
|