📄 operation.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace Calculator
{
public class Operation
{
private double _strNumA;
private double _strNumB;
public double StrNumA
{
get { return _strNumA; }
set { _strNumA = value; }
}
public double StrNumB
{
get { return _strNumB; }
set { _strNumB = value; }
}
public virtual double GetResult()
{
double Result = 0;
return Result;
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -