Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/colinkiama/emojidebug
Easily write debug messages with emoji in C#
https://github.com/colinkiama/emojidebug
csharp debug debugging emoji net netstandard
Last synced: about 1 month ago
JSON representation
Easily write debug messages with emoji in C#
- Host: GitHub
- URL: https://github.com/colinkiama/emojidebug
- Owner: colinkiama
- License: mit
- Created: 2019-10-01T15:30:09.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-01-05T09:35:58.000Z (12 months ago)
- Last Synced: 2024-11-03T06:11:50.512Z (about 2 months ago)
- Topics: csharp, debug, debugging, emoji, net, netstandard
- Language: C#
- Homepage:
- Size: 19.5 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# EmojiDebug
Easily write debug messages with emoji in C#![NugetRelease](https://img.shields.io/nuget/v/EmojiDebug.ColinKiama)
Nuget: `EmojiDebug.ColinKiama`
## Tutorial
There are 4 methods to use:
```csharp
EmojiDebug.Write(DebugEmoji, string)
EmojiDebug.WriteLine(DebugEmoji, string)EmojiDebug.Write(DebugEmoji, Exception)
EmojiDebug.WriteLine(DebugEmoji, Exception)
```
So:
```csharp
EmojiDebug.WriteLine(DebugEmoji.BlackFlag, "Check this out!")
```
Would show: `🏴 Check this out!`