cscの作法
1144 ワード
概要
cscの作法、調べてみた。
環境
.NET Framework 2,0
写真
サンプルコード
using System;
using System.Windows.Forms;
using System.Drawing;
class form1: Form {
form1() {
Text = "hello";
ClientSize = new Size(200, 200);
Label la1 = new Label();
la1.Location = new Point(50, 50);
la1.Text = "Hello World!";
Controls.AddRange(new Control[] {
la1
});
}
[STAThread]
public static void Main() {
Application.Run(new form1());
}
}
コンパイル
csc test.cs
using System;
using System.Windows.Forms;
using System.Drawing;
class form1: Form {
form1() {
Text = "hello";
ClientSize = new Size(200, 200);
Label la1 = new Label();
la1.Location = new Point(50, 50);
la1.Text = "Hello World!";
Controls.AddRange(new Control[] {
la1
});
}
[STAThread]
public static void Main() {
Application.Run(new form1());
}
}
csc test.cs
以上。
Author And Source
この問題について(cscの作法), 我々は、より多くの情報をここで見つけました https://qiita.com/ohisama@github/items/830c8daab346473adb47著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .