Glare.ExtensionMethods.ReadArrayVector2d C# (CSharp) Method

ReadArrayVector2d() public static method

Read an array of Vector2d values.
public static ReadArrayVector2d ( this reader, int count ) : Vector2d[]
reader this
count int
return Vector2d[]
        public static Vector2d[] ReadArrayVector2d(this BinaryReader reader, int count)
        {
            Vector2d[] array = new Vector2d[count]; reader.ReadArray(array, 0, count); return array;
        }
ExtensionMethods