Glare.ExtensionMethods.ReadArrayVector2s C# (CSharp) Method

ReadArrayVector2s() public static method

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