예제 #1
0
		public DynamicProxy (SerializationInfo info, StreamingContext context)
		{
			ObjectStreamClass osc = (ObjectStreamClass) info.GetValue("0", typeof(object));
			obj = osc.NewInstance();
		}
예제 #2
0
		public DynamicProxy (Instance obj)
		{
			this.obj = obj;
		}