Glare.ExtensionMethods.ReadArrayVector4s C# (CSharp) Method

ReadArrayVector4s() public static method

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