https://github.com/allenkeys/collectionsvisualizer
This package help new C# developers, to have visual representation of collections state as found in some programming languages like JavaScript and Python
https://github.com/allenkeys/collectionsvisualizer
Last synced: 2 months ago
JSON representation
This package help new C# developers, to have visual representation of collections state as found in some programming languages like JavaScript and Python
- Host: GitHub
- URL: https://github.com/allenkeys/collectionsvisualizer
- Owner: Allenkeys
- License: mit
- Created: 2023-01-15T22:59:40.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-06-29T20:47:31.000Z (almost 2 years ago)
- Last Synced: 2025-01-23T19:36:24.570Z (4 months ago)
- Language: C#
- Size: 12.7 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# CollectionsVisualizer
> This package help new C# developers, to have visual representation of collections state as found in some programming languages like JavaScript and Python.
## Built With
- Major languages: C#
- Frameworks: .NET Standard 2.0
- Technologies: Github and Visual Studio## Live Demo
[Live Demo Link](https://allenkeys.github.io/CollectionsVisualizer)
## Getting Started
- To install our package using the .NET CLI, run: `dotnet add package Graidot.Utils.CollectionsVisualizer --version 1.0.2`
- Installation using Visual Studio
- Right-click on project dependencies
- Select manage Nuget packages
- Search `Graidot.Utils.CollectionsVisualizer`
- Click install### Prerequisites
- An understanding of C# and NuGet Packages
- A Visual Studio### Usage
```
using Graidot.Utils.CollectionsVisualizer;
namespace TestCase
{
internal class Program
{
static void Main(string[] args)
{
List songs = new List{ "Hello", "Halo", "Dangerous", "Power" };
string[] names = { "Josh", "Gray", "Alex", "Henry" };
int[] nums = { 1, 2, 3 };Visualizer.Display(songs);
// [ "Hello", "Halo", "Dangerous", "Power" ]
Visualizer.Display(names);
// [ "Josh", "Gray", "Alex", "Henry" ]
Visualizer.Display(nums);
// [1, 2, 3 ]
}
}
}
```
## Authors👤 **Joshua Eze**
- GitHub: [@Allenkeys](https://github.com/Allenkeys)
- Twitter: [@jdgraay](https://twitter.com/jdgraay)
- LinkedIn: [Eze Joshua](https://linkedin.com/in/eze-joshua)## 🤝 Contributing
Contributions, issues, and feature requests are welcome!
Feel free to check the [issues page](https://github.com/allenkeys/CollectionsVisualizer/issues).
## Show your support
Give a ⭐️ if you like this project!
## 📝 License
This project is [MIT](./LICENSE) licensed.