##// END OF EJS Templates
working on linked list
working on linked list

File last commit:

r106:d4e38929ce36 v2
r113:468d156e434e v2-1
Show More
MTCustomQueueNode.cs
6 lines | 151 B | text/x-csharp | CSharpLexer
namespace Implab.Parallels {
public class MTCustomQueueNode<TNode> where TNode : MTCustomQueueNode<TNode> {
public TNode next;
}
}