Exemple #1
0
        public static void DynamicInvoke_MissingTypeForDefaultParameter_Succeeds()
        {
            // Passing Type.Missing with default.
            Delegate d = new IntIntDelegateWithDefault(IntIntMethod);

            d.DynamicInvoke(7, Type.Missing);
        }
Exemple #2
0
 public static void DynamicInvoke_MissingTypeForDefaultParameter_Succeeds()
 {
     // Passing Type.Missing with default.
     Delegate d = new IntIntDelegateWithDefault(IntIntMethod);
     d.DynamicInvoke(7, Type.Missing);
 }