C# Класс SGDE.Content.Code.Library.Boolean

A Boolean object is a data type that can have one of two values, either true or false, used for logical operations.
Наследование: Object
Показать файл Открыть проект

Открытые методы

Метод Описание
Boolean ( ) : System

Creates a Boolean object with the value of false.

Boolean ( Object expression = null ) : System

Creates a Boolean object with the specified value.

toString ( ) : String

Returns the string representation ("true" or "false") of the Boolean object.

Приватные методы

Метод Описание
Boolean ( bool b ) : System

Описание методов

Boolean() публичный Метод

Creates a Boolean object with the value of false.
public Boolean ( ) : System
Результат System

Boolean() публичный Метод

Creates a Boolean object with the specified value.
public Boolean ( Object expression = null ) : System
expression Object Any expression.
Результат System

toString() публичный Метод

Returns the string representation ("true" or "false") of the Boolean object.
public toString ( ) : String
Результат String