Skip to content

Instantly share code, notes, and snippets.

@noqisofon
Created November 26, 2010 07:02
Show Gist options
  • Save noqisofon/716369 to your computer and use it in GitHub Desktop.
Save noqisofon/716369 to your computer and use it in GitHub Desktop.
CUI 用 C# テンプレ。
using System;
using System.Collections.Generic;
using System.Text;
namespace sample.any {
/// <summary>
///
/// </summary>
class Program {
/// <summary>
///
/// </summary>
/// <param name="args"></param>
public void run(string[] args) {
}
/// <summary>
///
/// </summary>
/// <param name="args"></param>
static void Main(string[] args) {
Program progn = new Program();
progn.run( args );
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment