![]() |
DC2343A
FW 1.0.2 / GUI 1.0.10
LTC3335 Nanopower Buck-Boost DC/DC with Integrated Coulomb Counter
|
simple class implementing an interface More...
Data Structures | |
class | NestedClass |
nested class declared inside SampleClass More... | |
Public Member Functions | |
double | SampleFunction (double pFirst) |
function with parameter More... | |
double[] | SampleFunction2 (double[] pFirst) |
function with arrays More... | |
void | SampleMethod () |
simple method More... | |
void | SampleMethodWithParams (string pFirst, ref int pPointer) |
method with parameters More... | |
void | MethodWithArrayParams (int[] pArr, int pArg) |
method with an array as param More... | |
void | nestedClassObject_OnSomeEvent (object Sender, EventArgs args) |
method handles event from nested class More... | |
OnSomeEvent (object Sender) | |
some event More... | |
void | Dispose () |
IDisposable implementation More... | |
Static Public Member Functions | |
static bool | operator+ (SampleClass Obj1, SampleClass Obj2) |
simple operator More... | |
Data Fields | |
long[] | longArray |
long array More... | |
string | someString |
simple public string value More... | |
NestedClass | nestedClassObject |
NestedClass instance. More... | |
Protected Member Functions | |
virtual void | Dispose (bool disposing) |
IDisposable implementation More... | |
Properties | |
string | StringProperty [get, set] |
simple property More... | |
int | IntegerProperty [get] |
readonly property More... | |
![]() | |
string | StringProperty [get, set] |
simple property More... | |
int | IntegerProperty [get] |
read only property More... | |
simple class implementing an interface
Implements ISample
Definition at line 93 of file class_with_interface.vb.
|
protectedvirtual |
IDisposable implementation
disposing |
Is called from default Dispose method.
void Software.SampleClass.Dispose | ( | ) |
IDisposable implementation
Implements IDisposable.Dispose
void Software.SampleClass.MethodWithArrayParams | ( | int[] | pArr, |
int | pArg | ||
) |
method with an array as param
pArr | integer array |
pArg | simple parameter |
void Software.SampleClass.nestedClassObject_OnSomeEvent | ( | object | Sender, |
EventArgs | args | ||
) |
method handles event from nested class
Software.SampleClass.OnSomeEvent | ( | object | Sender | ) |
some event
Sender | sender of object type |
Implements ISample.OnSomeEvent
Implements Software.ISample.
|
static |
simple operator
Obj1 | first simple object |
Obj2 | second simple object |
double Software.SampleClass.SampleFunction | ( | double | pFirst | ) |
function with parameter
pFirst | simple parameter |
Implements ISample.SampleFunction
Implements Software.ISample.
double [] Software.SampleClass.SampleFunction2 | ( | double[] | pFirst | ) |
function with arrays
pFirst | double array as parameter |
void Software.SampleClass.SampleMethod | ( | ) |
void Software.SampleClass.SampleMethodWithParams | ( | string | pFirst, |
ref int | pPointer | ||
) |
method with parameters
pFirst | simple param |
pPointer | pinter |
Implements ISample.SampleMethodWithParams
Implements Software.ISample.
long [] Software.SampleClass.longArray |
long array
Definition at line 116 of file class_with_interface.vb.
NestedClass Software.SampleClass.nestedClassObject |
NestedClass instance.
Definition at line 118 of file class_with_interface.vb.
string Software.SampleClass.someString |
simple public string value
Definition at line 117 of file class_with_interface.vb.
|
get |
readonly property
integer value
Implements ISample.IntegerProperty
Definition at line 136 of file class_with_interface.vb.
|
getset |
simple property
some string
Implements ISample.StringProperty
Definition at line 127 of file class_with_interface.vb.