7 lines
135 B
C#
7 lines
135 B
C#
public static class BoolExtension
|
|
{
|
|
public static int ToInt(this bool _bool)
|
|
{
|
|
return _bool == true ? 1 : 0;
|
|
}
|
|
} |