23 lines
		
	
	
		
			367 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			367 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| 
 | |
| namespace ModelConverter
 | |
| {
 | |
| 	/// <summary>
 | |
| 	/// Summary description for Class1.
 | |
| 	/// </summary>
 | |
| 	class Startup
 | |
| 	{
 | |
| 		/// <summary>
 | |
| 		/// The main entry point for the application.
 | |
| 		/// </summary>
 | |
| 		[STAThread]
 | |
| 		static void Main(string[] args)
 | |
| 		{
 | |
| 			//
 | |
| 			// TODO: Add code to start application here
 | |
| 			//
 | |
| 			System.Console.WriteLine("Poke!");
 | |
| 		}
 | |
| 	}
 | |
| }
 |