SimpleMath.cs
资源名称:Visual.rar [点击查看]
上传用户:yiyuerguo
上传日期:2014-09-27
资源大小:3781k
文件大小:1k
源码类别:
C#编程
开发平台:
Others
- using System;
- namespace MathLibrary
- {
- public class SimpleMath : MarshalByRefObject
- {
- public SimpleMath()
- {
- Console.WriteLine("SimpleMath ctor called");
- }
- public int Add(int n1, int n2)
- {
- Console.WriteLine("SimpleMath.Add({0},{1})", n1, n2);
- return n1 + n2;
- }
- public int Subtract(int n1, int n2)
- {
- Console.WriteLine("SimpleMath.Subtract({0},{1})", n1, n2);
- return n1 - n2;
- }
- }
- }