[This is preliminary documentation and is subject to change.]
Parse a string into an Erlang term
Namespace: NFX.ErlangAssembly: NFX.Erlang (in NFX.Erlang.dll) Version: 3.0.0.1 (3.0.0.1)
public static T To<T>(
this string fmt,
params Object[] args
)
where T : IErlObject
public static T To<T>(
this string fmt,
params Object[] args
)
where T : IErlObject
<ExtensionAttribute>
Public Shared Function To(Of T As IErlObject) (
fmt As String,
ParamArray args As Object()
) As T
<ExtensionAttribute>
Public Shared Function To(Of T As IErlObject) (
fmt As String,
ParamArray args As Object()
) As T
public:
[ExtensionAttribute]
generic<typename T>
where T : IErlObject
static T To(
String^ fmt,
... array<Object^>^ args
)
public:
[ExtensionAttribute]
generic<typename T>
where T : IErlObject
static T To(
String^ fmt,
... array<Object^>^ args
)
static member To :
fmt : string *
args : Object[] -> 'T when 'T : IErlObject
static member To :
fmt : string *
args : Object[] -> 'T when 'T : IErlObject
- T
Return Value
Type:
TUsage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
String. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).