https://github.com/userr00t/netchalker
A chalker library for .NET.
https://github.com/userr00t/netchalker
chalk chalker console console-tool csharp log net
Last synced: 10 months ago
JSON representation
A chalker library for .NET.
- Host: GitHub
- URL: https://github.com/userr00t/netchalker
- Owner: UserR00T
- License: gpl-3.0
- Created: 2019-03-23T19:54:52.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-10-22T11:47:10.000Z (over 6 years ago)
- Last Synced: 2025-02-15T00:08:53.727Z (over 1 year ago)
- Topics: chalk, chalker, console, console-tool, csharp, log, net
- Language: C#
- Size: 24.4 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# NetChalker
> A chalker library for .NET.

## Installation
1. Goto ``'Releases'``.
2. Download the latest version.
3. Reference the ``.dll`` into your Console Application Project.
## How to use
Create a new instance by typing
```CSharp
using NetChalker;
// ...
var chalker = new Chalker();
```
## Why
I originally created the first version for a project called [UniversalUnityHooks](https://github.com/UserR00T/UniversalUnityHooks) but later thought this was pretty useful as standalone. I then decided to improve the source code and release it.
## Example
```CSharp
// ...
using NetChalker;
// ...
public static Chalker ChalkerInstance { get; set; }
public static void Main()
{
ChalkerInstance = new Chalker();
foreach (var messageType in ChalkerInstance.MessageTypes)
ChalkerInstance.WriteMessage(messageType.Value, "Hello World!");
}
```
Output

For more examples visit the source/Samples/ folder.
## Todo
- [ ] Refactor code / Redesign structure
- [ ] Build for multiple versions; currently only supports .NET 4.6.1, but can easily be changed to others.
- [ ] Upload to NuGet.