Glare.ExtensionMethods.ReadArrayVector4f C# (CSharp) Method

ReadArrayVector4f() public static method

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