|
GHUtilsreadStrings Method
|
converts list of generic objects into a list of strings.
Namespace:
Karamba.GHopper.Utilities
Assembly:
Karamba3D (in Karamba3D.dll) Version: 2.2.0.5 (2.2.0.5)
Syntaxpublic static void readStrings(
List<IGH_Goo> in_gh_generic,
out List<string> values,
out string msg
)
Public Shared Sub readStrings (
in_gh_generic As List(Of IGH_Goo),
<OutAttribute> ByRef values As List(Of String),
<OutAttribute> ByRef msg As String
)
public:
static void readStrings(
List<IGH_Goo^>^ in_gh_generic,
[OutAttribute] List<String^>^% values,
[OutAttribute] String^% msg
)
static member readStrings :
in_gh_generic : List<IGH_Goo> *
values : List<string> byref *
msg : string byref -> unit
Parameters
- in_gh_generic
- Type: System.Collections.GenericListIGH_Goo
list of generic objects. - values
- Type: System.Collections.GenericListString
list of input string values. - msg
- Type: SystemString
error message if not "".
See Also