摘要: public interface ITest { decimal Balance { get; } }public class Test : ITest { public Test(decimal balance) { ... 阅读全文
posted @ 2015-08-26 21:57 USID 阅读(332) 评论(0) 推荐(0) 编辑
摘要: public interface IAccount { decimal Balance { get; set; } string Name { get; } }public class Account : IAccount { privat... 阅读全文
posted @ 2015-08-26 21:38 USID 阅读(498) 评论(0) 推荐(0) 编辑