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
파일 보기 프로젝트 열기: sgdc/sgdc-old

공개 메소드들

메소드 설명
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