nakov 


Wintellect Power Collections is a community project to develop the best public license type-safe collection classes for .NET. Power Collections implements classical data structures (lists, sets, bags, dictionaries) in C#, which are well optimized for performance, and makes heavy use of .NET... More information
The .NET library "Nakov.TurtleGraphics" provides а very simple "turtle graphics" drawing interface for C# / .NET Windows Forms, designed for kids, learning to code. It supports all standard turtle commands like "move-forward", "move-backward", "rotate", "move-to", "pen-up", "pen-down". Animates the... More information
Nakov.IO.Cin is a console-based input parser for C#, which reads numbers and text in the C++ cin / cout / iostream style. For example, in C++ we can read two integers using this code: int x, y; cin >> x >> y; With Nakov.IO.Cin we can write the same code in C# like this: int x = Cin.NextInt(); int... More information
Very simple tree library, holding a class TreeNode<T>. Usage: var peopleTree = new TreeNode<string>("Boss", new TreeNode<string>("Steve", new TreeNode<string>("Maria") ), new TreeNode<string>("Peter") ); Console.WriteLine(peopleTree);