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
{
我需要做什么才能获得此功能?感谢。