SimpleMath.cs
上传用户:yiyuerguo
上传日期:2014-09-27
资源大小:3781k
文件大小:1k
源码类别:

C#编程

开发平台:

Others

  1. using System;
  2. namespace MathLibrary
  3. {
  4.    public class SimpleMath : MarshalByRefObject
  5.    {
  6.       public SimpleMath()
  7.       {
  8.          Console.WriteLine("SimpleMath ctor called");
  9.       }
  10.       public int Add(int n1, int n2)
  11.       {
  12.          Console.WriteLine("SimpleMath.Add({0},{1})", n1, n2);
  13.          return n1 + n2;
  14.       }
  15.       public int Subtract(int n1, int n2)
  16.       {
  17.          Console.WriteLine("SimpleMath.Subtract({0},{1})", n1, n2);
  18.          return n1 - n2;
  19.       }
  20.    }
  21. }