J
Janaka
Does anyone know if there's any performance difference between using these
two methods or in what circumstances you should use one over the other? For
instance if I want to cut off the first 10 characters in my string I could
use either
myString.Remove(0,10);
myString.Substring(11);
Thanks,
Janaka
two methods or in what circumstances you should use one over the other? For
instance if I want to cut off the first 10 characters in my string I could
use either
myString.Remove(0,10);
myString.Substring(11);
Thanks,
Janaka