|
| | Conf (string Class, string Type, string[] Values) |
| |
| override string | ToString () |
| |
Definition at line 17 of file PycroManager.cs.
◆ Conf()
| BioImager.PycroManager.Conf.Conf |
( |
string |
Class, |
|
|
string |
Type, |
|
|
string[] |
Values |
|
) |
| |
Definition at line 22 of file PycroManager.cs.
23 {
24 this.Class = Class;
25 this.Type = Type;
26 this.Values = Values;
27 }
◆ ToString()
| override string BioImager.PycroManager.Conf.ToString |
( |
| ) |
|
Definition at line 28 of file PycroManager.cs.
29 {
30 string s = Class + "," + Type + ",";
31 foreach (string item in Values)
32 {
33 s += item + ",";
34 }
35 return s;
36 }
◆ Class
| string BioImager.PycroManager.Conf.Class |
|
getset |
◆ Type
| string BioImager.PycroManager.Conf.Type |
|
getset |
◆ Values
| string [] BioImager.PycroManager.Conf.Values |
|
getset |
The documentation for this struct was generated from the following file: