Glare.ExtensionMethods.ReadArrayVector2f C# (CSharp) Method

ReadArrayVector2f() public static method

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