예제 #1
0
파일: Program.cs 프로젝트: Redspeed93/RPML
 static void Main(string[] args)
 {
     MyMathDLL.MyMathClass math = new MyMathClass();
     Console.WriteLine(math.Add(3, 4));
     Console.WriteLine(math.Divide(4, 2));
     Console.WriteLine(math.Multiply(5, 88));
     Console.WriteLine(math.Subtract(5, 6));
     Console.ReadLine();
 }
예제 #2
0
 public void SubtractTest()
 {
     Assert.IsTrue(m.Subtract(2, 3) == -1);
 }