Exemple #1
0
 public static string SubstringCached(this ValueString str, int startIndex)
 {
     return(str.SubstringCached(startIndex, str.Length - startIndex));
 }
Exemple #2
0
 public static string SubstringCached(this ValueString str)
 {
     return(str.SubstringCached(0, str.Length));
 }