摘要: namespace SwiftCode.BBS.Extensions.AOP { public class BbLogsAOP : IInterceptor { public void Intercept(IInvocation invocation) { //invocation.TargetTy 阅读全文
posted @ 2025-09-18 17:55 爱晒太阳的懒猫。。 阅读(6) 评论(0) 推荐(0)
摘要: 虚方法 public class Animal { // 虚方法 public virtual void MakeSound() { Console.WriteLine("动物发出声音"); } } public class Dog : Animal { // 重写虚方法 public overri 阅读全文
posted @ 2025-09-18 16:34 爱晒太阳的懒猫。。 阅读(13) 评论(0) 推荐(0)