M
Matt
10 len space designated strings grows when i do sb.insert.
is there way to stop string growing. It becomes 14 space len on
test.file
I like to be able insert 3rd position but length should stay 10
string initialValue = " ";
string xyz = "xyz";
sb = new StringBuilder(initialValue);
sb.Insert(3, xyz);
m.Writer("c:/test.txt",sb.ToString());
is there way to stop string growing. It becomes 14 space len on
test.file
I like to be able insert 3rd position but length should stay 10
string initialValue = " ";
string xyz = "xyz";
sb = new StringBuilder(initialValue);
sb.Insert(3, xyz);
m.Writer("c:/test.txt",sb.ToString());