hi all,,
first thanks before you help me :)
in the truth I programing aprograme that let you load a text file , then the programe convert the text file to array forme to can make some proccessing on this file
and we add buttom for append other text file in the first text file
so I make the code and there are no error
but the programe stop and never complete ,, I dont know where is the problem , so can you please give me soliution plz ?
this the code
In_dataAppend =
In =
In_Str_dataAppend = new string[samples, variables - 4];
Array.Copy(tempStrData, 0, In_Str_dataAppend, 0, samples * (variables - 4));
int Len2 = In_Str_data.Length + In_Str_dataAppend.Length;
In_str = new string[Len2, variables - 4]; // just one array allocation
Out_dataAppend =
Out =