在项目中添加一个类,为什么运行有错误?、
using System;using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace WindowsFormsApplication2
{
public class Class1
{
double money;//贷款金额
public double interestRate;//贷款利率
int month; //还款月数
double monthlyPayment; //月还款
public double Money //贷款金额相对应字段属性
{
set
{
money=value;
}
get
{
return money;
}
}
}
public int Month
{
set
{
month=value;
}
get
{
return month ;
}
}
public double MonthlyPayment
{
set
{
monthlyPayment= value;
}
get
{
return monthlyPayment;
}
}
}
麻烦帮改一下