using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace jj4 { public class SU:Operation { public override double GetResult() { double result = NumberA - NumberB; return result; } } }
原文:http://www.cnblogs.com/nancheng/p/6691597.html