using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
//定义一个类.
class MyClass
{
string MyString = "Tony";
public void ShowMessage(string MyString)
{
if (MyString == this.MyString) // 第一个MyString是这个方法中的MyString, 第二个this.MyString则是这个类中的成员. 所以,this的作用就是表示当前对象.
{ Console.WriteLine("是相等的"); }
else
{ Console.WriteLine("不是相等的"); }
}
}
class Program
{
static void Main(string[] args)
{
MyClass My = new MyClass();
My.ShowMessage(Console.ReadLine());
}
}
}