A chalker library for .NET.
- Goto
'Releases'
. - Download the latest version.
- Reference the
.dll
into your Console Application Project.
Create a new instance by typing
using NetChalker;
// ...
var chalker = new Chalker();
I originally created the first version for a project called UniversalUnityHooks but later thought this was pretty useful as standalone. I then decided to improve the source code and release it.
// ...
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!");
}
For more examples visit the source/Samples/ folder.
- 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.