XmlConvert.ToBoolean(String) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
public:
static bool ToBoolean(System::String ^ s);
public static bool ToBoolean (string s);
static member ToBoolean : string -> bool
Public Shared Function ToBoolean (s As String) As Boolean
參數
- s
- String
要轉換的字串。
傳回
Boolean
值,為 true
或 false
。
例外狀況
s
為 null
。
s
不表示為 Boolean
值。
備註
的有效字串為 「1」 或 「true」,而 「0」 true
或 「false」 則為 false
。