C# Class 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.
Inheritance: Object
Afficher le fichier Open project: sgdc/sgdc-old

Méthodes publiques

Méthode Description
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.

Private Methods

Méthode Description
Boolean ( bool b ) : System

Method Details

Boolean() public méthode

Creates a Boolean object with the value of false.
public Boolean ( ) : System
Résultat System

Boolean() public méthode

Creates a Boolean object with the specified value.
public Boolean ( Object expression = null ) : System
expression Object Any expression.
Résultat System

toString() public méthode

Returns the string representation ("true" or "false") of the Boolean object.
public toString ( ) : String
Résultat String