using System;
using System.Drawing;
using System.Windows.Forms;
namespace MyFrmApp
{
public class MyForm : Form
{
public MyForm()
{
Label label = new Label();
label.Text = "Welcome to C#!";
label.Font = new Font("Geneva",18,FontStyle.Regular);
label.Height = 30;
label.Width = 300;
this.Controls.Add(label);
this.Width = 300;
this.Height = 200;
}
}
}
(main1.cs)
using System;
using System.Windows.Forms;
namespace MyFrmApp
{
class Program
{
[STAThread]
private static void Main(string[] args)
{
Application.Run(new MyForm());
}
}
}
-----------------------------------------------------------------------------
上記ファイルを同一フォルダにおき
csc /out:form1.exe *.cs で実行ファイルができる!
https://www.tuyano.com/index3?id=1254003&page=3 それに
https://docs.microsoft.com/ja-jp/dotnet/csharp/language-reference/compiler-options/command-line-building-with-csc-exe を参考にした
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
https://docs.microsoft.com/en-us/dotnet/fsharp/tutorials/asynchronous-and-concurrent-programming/async
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
https://docs.microsoft.com/en-us/dotnet/fsharp/tutorials/asynchronous-and-concurrent-programming/async
0 件のコメント:
コメントを投稿