C# 클래스 PSint.Base

파일 보기 프로젝트 열기: LuckyGeck/PSint 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
name string

공개 메소드들

메소드 설명
Base ( ) : System

Constructor of clear object.

Base ( Base bParam ) : System

Constructor, which creates a clone of a particular var.

Base ( string sName ) : System

Constructor of an empty var with a particular name.

Base ( string sName, String sParam ) : System

Constructor of a string-typed var.

Base ( string sName, double dParam ) : System

Constructor of a double-typed var.

Base ( string sName, long lParam ) : System

Constructor of a longint-typed var.

Clear ( ) : void

Change var's value to null. Name doesn't change

Get ( ) : string

Gets a value of the var.

Set ( Base bParam ) : void

Sets a value to the var by copying it form another var.

Set ( String sParam ) : void

Sets a string value.

Set ( double dParam ) : void

Sets a double value to the var

Set ( long lParam ) : void

Sets longint value to the var.

SetUntyped ( string sParam ) : void

Sets a var value of unknown type (type of var is automaticly checked) Unnamed var.

SetUntyped ( string sName, string sParam ) : void

Sets a var value of unknown type (type of var is automaticly checked)

operator ( ) : Base
operator ( ) : bool

메소드 상세

Base() 공개 메소드

Constructor of clear object.
public Base ( ) : System
리턴 System

Base() 공개 메소드

Constructor, which creates a clone of a particular var.
public Base ( Base bParam ) : System
bParam Base Var to clone.
리턴 System

Base() 공개 메소드

Constructor of an empty var with a particular name.
public Base ( string sName ) : System
sName string Name of the var.
리턴 System

Base() 공개 메소드

Constructor of a string-typed var.
public Base ( string sName, String sParam ) : System
sName string Name of the var.
sParam String Value of the var (string)
리턴 System

Base() 공개 메소드

Constructor of a double-typed var.
public Base ( string sName, double dParam ) : System
sName string Name of the var.
dParam double Value of the var (double)
리턴 System

Base() 공개 메소드

Constructor of a longint-typed var.
public Base ( string sName, long lParam ) : System
sName string Name of the var.
lParam long Value of the var (longint)
리턴 System

Clear() 공개 메소드

Change var's value to null. Name doesn't change
public Clear ( ) : void
리턴 void

Get() 공개 메소드

Gets a value of the var.
public Get ( ) : string
리턴 string

Set() 공개 메소드

Sets a value to the var by copying it form another var.
public Set ( Base bParam ) : void
bParam Base Base var to get value from.
리턴 void

Set() 공개 메소드

Sets a string value.
public Set ( String sParam ) : void
sParam String Value of the var.
리턴 void

Set() 공개 메소드

Sets a double value to the var
public Set ( double dParam ) : void
dParam double Double value of the var.
리턴 void

Set() 공개 메소드

Sets longint value to the var.
public Set ( long lParam ) : void
lParam long Longint value.
리턴 void

SetUntyped() 공개 메소드

Sets a var value of unknown type (type of var is automaticly checked) Unnamed var.
public SetUntyped ( string sParam ) : void
sParam string Var value
리턴 void

SetUntyped() 공개 메소드

Sets a var value of unknown type (type of var is automaticly checked)
public SetUntyped ( string sName, string sParam ) : void
sName string Var name
sParam string Var value
리턴 void

operator() 공개 정적인 메소드

public static operator ( ) : Base
리턴 Base

operator() 공개 정적인 메소드

public static operator ( ) : bool
리턴 bool

프로퍼티 상세

name 공개적으로 프로퍼티

public string name
리턴 string