单声道开发/统一中的C#IPriorityQueue

时间:2017-05-01 12:23:17

标签: c# .net unity3d monodevelop

Newb在这里,我试图使用MonriorDevelop的IPriorityQueue(https://msdn.microsoft.com/en-us/library/bb341766(v=vs.110).aspx),但它无法找到它。我错过了集会吗?我的代码的开头看起来像......

using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;



/// <summary>
/// Represents a binary heap data structure capable of storing generic key-value pairs.
/// </summary>
public class BinaryHeap<TKey, TValue> : IPriorityQueue<TKey, TValue>
    where TKey : System.IComparable
{

我需要做什么才能获得此功能?感谢。

0 个答案:

没有答案