Esempio n. 1
0
        public void IntCs_Parse(string str, int expected)
        {
            int value = IntCs.Parse(str);

            Assert.AreEqual(expected, value);
        }
Esempio n. 2
0
 protected override bool TryParse(string str, out int i)
 {
     str = str.Replace(".", string.Empty);
     return(IntCs.TryParse(str, out i));
 }