C# Class PSint.Base

Afficher le fichier Open project: LuckyGeck/PSint Class Usage Examples

Méthodes publiques

Свойство Type Description
name string

Méthodes publiques

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

Method Details

Base() public méthode

Constructor of clear object.
public Base ( ) : System
Résultat System

Base() public méthode

Constructor, which creates a clone of a particular var.
public Base ( Base bParam ) : System
bParam Base Var to clone.
Résultat System

Base() public méthode

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

Base() public méthode

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)
Résultat System

Base() public méthode

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)
Résultat System

Base() public méthode

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)
Résultat System

Clear() public méthode

Change var's value to null. Name doesn't change
public Clear ( ) : void
Résultat void

Get() public méthode

Gets a value of the var.
public Get ( ) : string
Résultat string

Set() public méthode

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.
Résultat void

Set() public méthode

Sets a string value.
public Set ( String sParam ) : void
sParam String Value of the var.
Résultat void

Set() public méthode

Sets a double value to the var
public Set ( double dParam ) : void
dParam double Double value of the var.
Résultat void

Set() public méthode

Sets longint value to the var.
public Set ( long lParam ) : void
lParam long Longint value.
Résultat void

SetUntyped() public méthode

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

SetUntyped() public méthode

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
Résultat void

operator() public static méthode

public static operator ( ) : Base
Résultat Base

operator() public static méthode

public static operator ( ) : bool
Résultat bool

Property Details

name public_oe property

public string name
Résultat string