Chris Ongsuco's Weblog
Information Technology, business, life, food...

July 2005 Entries

Happy 1st Blogsary

Its been a great year for me in here....Jeff, thanks a lot

String - Left, Right and Mid function

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); }}...