コード例 #1
0
ファイル: NorthwindData.cs プロジェクト: studosi-fer/RPPP
 public static NorthwindData GetInstance()
 {
     //Instead of recreating this class each time, return an existing
     //instance of the class.
     if (northwind == null)
     {
         northwind = new NorthwindData();
     }
     return(northwind);
 }