I have the following code and I am trying to read tab dilemited file. But it
gives me the following error
The best overload method match for String.Split(pa rams char[]) has some
Invalid arguments.
Even in intelligence I can't see split method.
string[] myContents = ReadFileLines(p ath);
for (int z = 0; z < myContents.Leng th; z++)
{
string[] line = String.Split(my Contents[z],"\t");
gives me the following error
The best overload method match for String.Split(pa rams char[]) has some
Invalid arguments.
Even in intelligence I can't see split method.
string[] myContents = ReadFileLines(p ath);
for (int z = 0; z < myContents.Leng th; z++)
{
string[] line = String.Split(my Contents[z],"\t");
Comment