|
GHUtilsreadStrings Method
|
converts list of generic objects into a list of strings
Namespace:
Karamba.GHopper.Utilities
Assembly:
karambaGH (in karambaGH.dll) Version: 1.15.0.0 (1.15.0.0)
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