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

DynamicInvoke_DefaultParameter_ValueTypeParameterWithExplicitValue() 개인적인 메소드

        public static void DynamicInvoke_DefaultParameter_ValueTypeParameterWithExplicitValue()
        {
            Assert.Equal(
                1,
                ((CustomValueType)(new ValueTypeWithDefaultValue(ValueTypeMethod)).DynamicInvoke(new object[] { new CustomValueType { Id = 1 } })).Id);
        }
DelegateTests