zoukankan      html  css  js  c++  java
  • TypeMembersToIL.cs

    #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;
    }
  • 相关阅读:
    9-2 链表
    transient
    获取当前电脑的ip地址
    LinkList
    Java代码模拟链表
    什么是复合主键
    wp8 入门到精通
    C# 从入门到精通
    wp8 json2csharp
    wp8 安装.Net3.5
  • 原文地址:https://www.cnblogs.com/shihao/p/2493684.html
Copyright © 2011-2022 走看看