|
| | Conf (string Class, string Type, string[] Values) |
| |
| override string | ToString () |
| |
Definition at line 25 of file MicroManager.cs.
◆ Conf()
| BioImager.MicroManager.Conf.Conf |
( |
string | Class, |
|
|
string | Type, |
|
|
string[] | Values ) |
Definition at line 30 of file MicroManager.cs.
31 {
32 this.Class = Class;
33 this.Type = Type;
34 this.Values = Values;
35 }
◆ ToString()
| override string BioImager.MicroManager.Conf.ToString |
( |
| ) |
|
Definition at line 36 of file MicroManager.cs.
37 {
38 string s = Class + "," + Type + ",";
39 foreach (string item in Values)
40 {
41 s += item + ",";
42 }
43 return s;
44 }
◆ Class
| string BioImager.MicroManager.Conf.Class |
|
getset |
◆ Type
| string BioImager.MicroManager.Conf.Type |
|
getset |
◆ Values
| string [] BioImager.MicroManager.Conf.Values |
|
getset |
The documentation for this struct was generated from the following file: