Glare.ExtensionMethods.ReadArrayVector3h C# (CSharp) Method

ReadArrayVector3h() public static method

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