public static class BoolExtension { public static int ToInt(this bool _bool) { return _bool == true ? 1 : 0; } }