2016-04-18 46 views
0

試圖使用月光碼我錯誤地發生了錯誤Kind例如,在單聲道:無法找到類型或命名空間名稱'Kind'

https://github.com/mono/moon/blob/master/class/System.Windows/Mono/Types.cs#L47

什麼是Kind並在它的定義是什麼?

namespace Mono 
{ 
    /* 
    * The managed equivalent of the unmanaged Types 
    * TODO: 
    * - Find out when to call Free. 
    */ 
    internal sealed partial class Types { 

     class KindComparer : IEqualityComparer<Kind> { 

      public bool Equals (Kind x, Kind y) 
      { 
       return x == y; 
      } 

      public int GetHashCode (Kind obj) 
      { 
       return (int) obj; 
      } 
     } 

這絕對是一個缺失的參考,但我不知道究竟是什麼。

回答

相關問題