CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
|
Class that keeps static members of System.Boolean .Net type. More...
#include <boolean.h>
Static Public Member Functions | |
static bool | Parse (const String &value) |
Converts the specified string to a value of bool type. More... | |
static bool | TryParse (const String &value, bool &result) |
Converts the specified string to a value of bool type. More... | |
Static Public Attributes | |
static const String | TrueString |
String representation of 'true' boolean value. More... | |
static const String | FalseString |
String representation of 'false' boolean value. More... | |
Class that keeps static members of System.Boolean .Net type.
|
static |
Converts the specified string to a value of bool type.
value | The string to convert. |
|
static |
Converts the specified string to a value of bool type.
value | The string to convert. |
result | The reference to a bool variable where the result of the conversion is put; the result is true if the specified string is equal to "True" and false if the specified string is equal to "False". |