namespace FishNet.Utility.Extension { public static class BooleanExtensions { /// /// Converts a boolean to an integer. /// /// /// public static int ToInt(this bool b) { return (b) ? 1 : 0; } } }