摘要:
public interface ITest { decimal Balance { get; } }public class Test : ITest { public Test(decimal balance) { ... 阅读全文
摘要:
public interface IAccount { decimal Balance { get; set; } string Name { get; } }public class Account : IAccount { privat... 阅读全文