System.Tests.DelegateTests.ValueTypeMethod C# (CSharp) Method

ValueTypeMethod() private static method

private static ValueTypeMethod ( MyStruct s ) : void
s MyStruct
return void
        private static void ValueTypeMethod(MyStruct s)
        {
            Assert.Equal(s.X, 0);
            Assert.Equal(s.Y, 0);
        }

Same methods

DelegateTests::ValueTypeMethod ( CustomValueType parameter ) : CustomValueType
DelegateTests