namespace ProxyLib; internal class ConcreteSubject: ISubject { public void Log() { Console.WriteLine("ConcreteSubject Log"); } }