VectorInt.LoadFromFile Method

void LoadFromFile(String FileName)

Reads the header information and the values array content from the file.

#NameTypeDescription
1FileNameString

Result: stored in self (calling object)

Remarks:

Reads the header information and the values array content from the file specified by FileName parameter.

Examples
TVecInt b;
MtxVec.CreateIt(out b);
try
    {
        b.LoadFromFile(@"c:\test.Vec"); // Read header and values for b
    }
finally
    {
        MtxVec.FreeIt(ref b);
    }
See Also: VectorInt.SaveToFile, VectorInt.LoadFromStream