- 分享
- 0
- 人气
- 0
- 主题
- 7
- 帖子
- 4707
- UID
- 82675
- 积分
- 5108
- 阅读权限
- 22
- 注册时间
- 2007-6-18
- 最后登录
- 2021-7-27
- 在线时间
- 5767 小时
|
原帖由 我是大猪头 于 2009-7-6 04:57 PM 发表
计算的部分
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
public class Operation
{
...
你的錯誤訊息是告訴你找不到並擁有3個參數的 GetResult 函數, 那麼你得看看是不是你的 internal 造成
雖然沒用 C#, 但是 internal 感覺像是 private 不允許 class 以外使用
- public virtual double GetResult()
- {
- double result = 0;
- return result;
- }
- internal static double GetResult(double p, double p_2, string operation)
- {
- throw new NotImplementedException();
- }
- ......
- result = Convert.ToString(Operation.GetResult(Convert.ToDouble(NumberA), Convert.ToDouble(NumberB), operate));
复制代码 |
|