Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Asp.net 和 C#,我需要为网络空间创建和 UNDO 功能。
我想知道最合适的 Collection。
数组、哈希表、字典?
由于您希望以执行时的相反顺序撤消推荐,因此Stack<T>将适合您的需要。然后,您可以在执行命令后将命令推送到堆栈上,并在您希望撤消时弹出它们
Stack<T>