斯柯达老明锐遥控器汽车钥匙换电池子磁(全过程)

MathLibrary.cs

using System;
using System.Collections.Generic;
using System.Text;

namespace SampleLibrary
{
    public class SimpleMath
    {
        public int Add(int a, int b)
        {
            return a + b;
        }

        public float Add(float a, float b)
        {
            return a + b;
        }

        public int Subtract(int a, int b)
        {
            return a - b;
        }

        public float Subtract(float a, float b)
        {
            return a - b;
        }

        public int Multiply(int a, int b)
        {
            return a * b;
        }

        public float Multiply(float a, float b)
        {
            return a * b;
        }

        public void monkeyTree()
        { }
    }
}

posted @ 2012-05-22 15:56  读书  阅读(111)  评论(0编辑  收藏  举报