System.Tests.DelegateTests.DynamicInvoke_DefaultParameter_NullableIntWithExplicitValue C# (CSharp) 메소드

DynamicInvoke_DefaultParameter_NullableIntWithExplicitValue() 개인적인 메소드

        public static void DynamicInvoke_DefaultParameter_NullableIntWithExplicitValue()
        {
            Assert.Equal(
                (int?)42,
                (int?)(new NullableIntWithDefaultValue(NullableIntMethod)).DynamicInvoke(new object[] { (int?)42 }));
        }
DelegateTests