static void Main(string[] args)
 {
     if (ValidationHelper.Validate(args[0], args[1]))
     {
         Console.WriteLine(ConvertionHelper.ConvertNumberFrom10NotationToAnyOtherNotation(UInt32.Parse(args[0]), UInt32.Parse(args[1])));
     }
 }
 public void ConvertFrom10Test(uint number, uint notation, string result)
 {
     Assert.AreEqual(result, ConvertionHelper.ConvertNumberFrom10NotationToAnyOtherNotation(number, notation));
 }