nakov
- 11,848 total downloads
- last updated 2/28/2021
- Latest version: 2.0.0
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
- 10,470 total downloads
- last updated 2/27/2021
- Latest version: 2.0.2.1
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
by:
nakov
- 1,945 total downloads
- last updated 2/26/2021
- Latest version: 2.0.2.1
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
SimpleTreeNode
by:
nakov
- 334 total downloads
- last updated 2/26/2021
- Latest version: 1.0.0
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);