Can anyone say me why when using this block of code :
StringBuilder temp = new StringBuilder(strSource);
for (int i = Start; i <= End-1; i++)
{
temp[i] = '';
}
I get an error in the "for" loop: literal empty character.
On the other hand, this works:
temp[i] = ' ';
''denotes a literal of typechar,""of typestring. What would be the char you describe in=''?i <= End-1is the same asi < End