R
Ron
Hi,
I need to parse text (ie. created in Notepad) files for numbers (doubles).
In Borland C++ Builder the following works:
if(!InVect.is_open())
{
InVect.open(TxtFileName.c_str()) ;
}
for(int Index = 1; Index < ILayerSize; Index++)
{
InVect >> InputVect[Index] ;
etc
}
('InputVect' is an array of doubles.)
I have been trying to perform the same kind of operation in C# but without
success so far.
Any help much appreciated,
Ron.
I need to parse text (ie. created in Notepad) files for numbers (doubles).
In Borland C++ Builder the following works:
if(!InVect.is_open())
{
InVect.open(TxtFileName.c_str()) ;
}
for(int Index = 1; Index < ILayerSize; Index++)
{
InVect >> InputVect[Index] ;
etc
}
('InputVect' is an array of doubles.)
I have been trying to perform the same kind of operation in C# but without
success so far.
Any help much appreciated,
Ron.