コード例 #1
0
ファイル: MAIN.CS プロジェクト: ppatoria/SoftwareDevelopment
		static void Main(string[] args)
		{
            // The following line won't compile due
            // to an ambiguity with the Id type.
            //Id myId = new Id("Ambiguous")
            ClubTypes.Id clubId= new ClubTypes.Id("Club");
            BankTypes.Id bankId = new BankTypes.Id("Bank");
        }
コード例 #2
0
ファイル: main.cs プロジェクト: poohpaintii/book-source-codes
 static void Main(string[] args)
 {
     // The following line won't compile due
     // to an ambiguity with the Id type.
     //Id myId = new Id("Ambiguous")
     ClubTypes.Id clubId = new ClubTypes.Id("Club");
     BankTypes.Id bankId = new BankTypes.Id("Bank");
 }