Glare.ExtensionMethods.ReadArrayVector4d C# (CSharp) Method

ReadArrayVector4d() public static method

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