コード例 #1
0
ファイル: Program.cs プロジェクト: treningit/pile
        static void Main(string[] args)
        {
            DBBool Qw = new DBBool(DBBool.False);

            if (Qw)
            {
                Console.WriteLine("Istina");
            }
            else
            {
                Console.WriteLine("Log");
            }
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: treningit/pile
 public DBBool(DBBool b)
 {
     this.a = b.a;
 }