RealProxy を使った最も簡単だと思われるサンプルをいくつかの Web ページを参考にしながら書いて見ました。 簡単なだけあって、まったく実用的ではありません。 using System; using System.Runtime.Remoting.Proxies; using System.Runtime.Remoting.Messaging; using System.Reflection; namespace IMethodMessageSample { class Class1 { [STAThread] static void Main(string[] args) { MyProxyClass mpc = new MyProxyClass(typeof(SampleClass)); SampleClass o = mpc.GetTransparentProxy() as