1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace DNS_Manager
  7. {
  8.     internal static class Utilities
  9.     {
  10.         internal static string CapitaliseFirstLetter(this string m)
  11.         {
  12.             return m[0].ToString().ToUpper() + m.Remove(0, 1);
  13.         }
  14.     }
  15. }
  16.