示例#1
0
 public static void Main(string [] args)
 {
     CallingPrivateMethodsThroughDelegates c = new CallingPrivateMethodsThroughDelegates();
     delegateExample d = new delegateExample(c.privateMethod);
 }
			public static void Main (string [] args)
			{
				CallingPrivateMethodsThroughDelegates c = new CallingPrivateMethodsThroughDelegates ();
				delegateExample d = new delegateExample (c.privateMethod);
			}