C#中this的用法

this用法1:引用类的当前实例,限定被相似的名称隐藏的成员

如:

public class Person

{

    public string Name{get;set;}

    public string Age{get;set;}

    public Person(string Name,string Age)

   {

      this.Name=Name;

       this.Age=Age;

   }

}

 

this用法2:将对象作为参数传递到其他方法

如:

public class Person
{
public string Name{get;set;}
 
  public void ShowName()
  {
    Helper.PrintName(this);
   }
}
 

public static class Helper

{

   public static void PrintName(Person person)

   {

    MessageBox.Show("姓名:"+person.Name);

   }

}

 

this用法3:扩展方法的对象

如:

 public enum StateLevelEnum
    {
        /// <summary>
        /// 非关键指标(灰色)
        /// </summary>
        NotKeyItem = 0,

        /// <summary>
        /// 正常(绿色)
        /// </summary>
        Normal = 1,

        /// <summary>
        /// 二级告警级别(黄色)
        /// </summary>
        Level2 = 2,

        /// <summary>
        /// 一级告警级别(红色)
        /// </summary>
        Level1 = 3
    }

 

 public static string ToUIString(this StateLevelEnum level)
        {
            string result = "";
            switch (level)
            {
                case StateLevelEnum.NotKeyItem:
                    result = "非关键指标";
                    break;
                case StateLevelEnum.Normal:
                    result = "正常";
                    break;
                case StateLevelEnum.Level2:
                    result = "二级告警";
                    break;
                case StateLevelEnum.Level1:
                    result = "一级告警";
                    break;
                default:
                    break;
            }

            return result;
        }

 调用:StateLevelEnum.Normal.ToUIString();  返回 "正常"

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值