示例#1
0
 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);
 }