System.Reflection.Tests.StructWith1Constructor.StructWith1Constructor C# (CSharp) Method

StructWith1Constructor() public method

public StructWith1Constructor ( int x, int y ) : System.Collections.Generic
x int
y int
return System.Collections.Generic
        public StructWith1Constructor(int x, int y)
        {
            this.x = x;
            this.y = y;
        }
    }
StructWith1Constructor