C# Класс PSint.Base

Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
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