SVGPathSegList.SVGPathSegList C# (CSharp) Method

SVGPathSegList() public method

public SVGPathSegList ( int size ) : System.Collections.Generic
size int
return System.Collections.Generic
    public SVGPathSegList(int size)
    {
        _segList = new List<object>(size);
    }