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

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