摘要:
using System;using System.Collections.Generic;using System.Text;namespace OperationLibrary{ /// <summary> /// 运算类 /// </summary> public class Operation { private double _numberA = 0; private double _numberB = 0; /// <summary> /// 数字A /// </summary> ... 阅读全文
