예제 #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;
 }