Rev Author Line No. Line
8 clempaul 1 namespace DNS_Manager
6 clempaul 2 {
3     internal static class Utilities
4     {
5         internal static string CapitaliseFirstLetter(this string m)
6         {
7             return m[0].ToString().ToUpper() + m.Remove(0, 1);
8         }
9     }
10 }