C#中简单的this与get的用法(string,decimal)

代码
namespace First
{
publicpartialclass Form1 : Form
{
public Form1()
{
InitializeComponent();
}

privatevoid Form1_Load(object sender, EventArgs e)
{
Employee E1
=new Employee("xiaohong","you");
E1.Salary
=4.2m;
E1.printEmployee();
this.Close();
}

privatevoid button1_Click(object sender, EventArgs e)
{
MessageBox.Show(
"Hi");
this.Close();
}
}
class Employee
{
privatestring name;
privatestring alias;
privatedecimal salary;
public Employee(string name, string alias)
{
this.name = name;
this.alias = alias;
}
publicdecimal Salary
{
get
{
return salary;
}
set
{
salary
= value;
}
}

publicvoid printEmployee()
{
MessageBox.Show(
"Name:"+ name +" "+"Alias:"+ alias +" "+"num:"+ salary);
// MessageBox.Show( Employee.SalcTax(this));

}
}
}

代码
namespace First
{
publicpartialclass Form1 : Form
{
public Form1()
{
InitializeComponent();
}

privatevoid Form1_Load(object sender, EventArgs e)
{
Employee E1
=new Employee("xiaohong","you");
E1.Salary
=1.10m;
E1.printEmployee();
this.Close();
}
}
class Employee
{
privatestring name;
privatestring alias;
privatedecimal salary;
public Employee(string e, string s)
{
this.name = e;
this.alias = s;
}
publicdecimal Salary
{
get
{
return salary;
}
set
{
salary
= value;
}
}
publicstaticdecimal SalcTax(Employee E)
{
return3* E.Salary;
}
publicvoid printEmployee()
{
MessageBox.Show(
"Name:"+ name +" "+"Alias:"+ alias +" "+"Salary"+ Employee.SalcTax(this));
// MessageBox.Show( Employee.SalcTax(this));

}
}
}

原文地址:https://www.cnblogs.com/wwwzzg168/p/3570079.html