Glare.ExtensionMethods.ReadArrayVector4h C# (CSharp) Method

ReadArrayVector4h() public static method

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