摘要: 1 using System; 2 3 namespace ConsoleApplication1 4 { 5 interface IInterface 6 { 7 void Add(int num); 8 } 9 10 struct Test : IInterface 11 { 12 public 阅读全文
posted @ 2019-04-08 20:48 小·糊涂仙 阅读(410) 评论(0) 推荐(0) 编辑