C# Class PSint.Base

Datei anzeigen Open project: LuckyGeck/PSint Class Usage Examples

Public Properties

Property Type Description
name string

Public Methods

Method 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 method

Constructor of clear object.
public Base ( ) : System
return System

Base() public method

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

Base() public method

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

Base() public method

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)
return System

Base() public method

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)
return System

Base() public method

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)
return System

Clear() public method

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

Get() public method

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

Set() public method

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.
return void

Set() public method

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

Set() public method

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

Set() public method

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

SetUntyped() public method

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

SetUntyped() public method

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
return void

operator() public static method

public static operator ( ) : Base
return Base

operator() public static method

public static operator ( ) : bool
return bool

Property Details

name public_oe property

public string name
return string