摘要: 首先看一个Interface1 Public Interface ISavable2 {3 4 5 string Save();6 7 }接着让一个Class继承这个Interface 1 public Class Catgory:ISavable 2 { 3 public string Save() 4 { 5 6 return "catogry save!" 7 8 } 9 10 string ISavable.Save()//explicit Interface Implementation11 {12 13 14 return "Isavable save 阅读全文
posted @ 2013-07-03 22:19 futan57 阅读(285) 评论(0) 推荐(0)