BuildingCoder.CmdCategorySupportsTypeParameter.SupportsOrNotString C# (CSharp) Method

SupportsOrNotString() static private method

static private SupportsOrNotString ( bool b ) : string
b bool
return string
        static string SupportsOrNotString( bool b )
        {
            return b
            ? "supports"
            : "does not support";
        }