Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public static class BoolExtensions
- {
- /// <summary>
- /// b == true ? 't' : 'f';
- /// </summary>
- /// <param name="b"></param>
- /// <returns></returns>
- public static char ToChar(this bool b) =>
- b == true ? 't' : 'f';
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement