2020年11月15日日曜日

c# mono sqlite3

https://kledgeb.blogspot.com/2019/12/net-core-88-deb-net-core-310.html 

:: .net  core 3.1 deb install 

------------------------------------------------

https://codezine.jp/article/detail/2823?p=2 

データベースへのパスを自分用にすればOKだった

gmcs new2.cs -r:System.Data.dll とあったがだめでmcsでOK!
https://codezine.jp/article/detail/2851 が別だてであった

2020年11月13日金曜日

mono でvb.net,csharpのGUIなどをやる

 http://simplesandsamples.com/ :: 実に詳しい

mcs below-program.cs -r:System.Windows.Forms -r:System.Drawing

using System;

using System.Windows.Forms;

using System.Drawing;

 

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;

        }

    }

}


namespace MyFrmApp

{

    class Program

    {

        [STAThread]

        private static void Main(string[] args)

        {

            Application.Run(new MyForm());

        }

         

    }

}

以上は、libro tuyanoのソースコード monodevelop統合環境での開発記事だが

もうないので、最上のサイトを参考に、コマンドラインでコンパイルする