博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
TypeMembersToIL.cs
阅读量:5832 次
发布时间:2019-06-18

本文共 599 字,大约阅读时间需要 1 分钟。

#if !DEBUG
#pragma warning disable 660, 661, 67
#endif
using System;
internal sealed class Test {
   // Constructor
   public Test() { }
   // Finalizer
   ~Test() { }
   // Operator overload
   public static Boolean operator ==(Test t1, Test t2) {
      return true;
   }
   public static Boolean operator !=(Test t1, Test t2) {
      return false;
   }
   // An operator overload
   public static Test operator +(Test t1, Test t2) { return null; }
   // A property
   public String AProperty {
      get { return null; }
      set { }
   }
   // An indexer
   public String this[Int32 x] {
      get { return null; }
      set { }
   }
   // An event
   public event EventHandler AnEvent;
}

转载地址:http://nqedx.baihongyu.com/

你可能感兴趣的文章
在CentOS上搭建git仓库服务器以及mac端进行克隆和提交到远程git仓库
查看>>
測試文章
查看>>
Flex很难?一文就足够了
查看>>
【BATJ面试必会】JAVA面试到底需要掌握什么?【上】
查看>>
CollabNet_Subversion小结
查看>>
mysql定时备份自动上传
查看>>
Linux 高可用集群解决方案
查看>>
17岁时少年决定把海洋洗干净,现在21岁的他做到了
查看>>
linux 启动oracle
查看>>
《写给大忙人看的java se 8》笔记
查看>>
倒计时:计算时间差
查看>>
Linux/windows P2V VMWare ESXi
查看>>
Windows XP倒计时到底意味着什么?
查看>>
运维工程师在干什么学些什么?【致菜鸟】
查看>>
Linux中iptables详解
查看>>
java中回调函数以及关于包装类的Demo
查看>>
maven异常:missing artifact jdk.tools:jar:1.6
查看>>
终端安全求生指南(五)-——日志管理
查看>>
Nginx 使用 openssl 的自签名证书
查看>>
创业维艰、守成不易
查看>>