July 2005 Entries
Its been a great year for me in here....Jeff, thanks a lot
public class StringManager{ public static string Left(string text, int length) { return text.Substring(0, length); } public static string Right(string text, int length) { return text.Substring(text.Length - length, length); } public static string Mid(string text, int start, int end) { return text.Substring(start, end); } public static string Mid(string text, int start) { return text.Substring(start, text.Length - start); }}...