|
ArrayExtensionsToStringT Method (T, String)
|
This stuff is still in the planning stages. Any questions or Comments are welcome. [This is preliminary documentation and is subject to change.]
Returns a
String that represents this instance.
Namespace:
(Default Namespace)
Assembly:
FurcadiaLib (in FurcadiaLib.dll) Version: 2.19.PreAlpha 59
Syntax public static string ToString<T>(
this T[] arr,
string seperator = ", "
)
<ExtensionAttribute>
Public Shared Function ToString(Of T) (
arr As T(),
Optional seperator As String = ", "
) As String
Dim arr As T()
Dim seperator As String
Dim returnValue As String
returnValue = arr.ToString(seperator)
public:
[ExtensionAttribute]
generic<typename T>
static String^ ToString(
array<T>^ arr,
String^ seperator = L", "
)
[<ExtensionAttribute>]
static member ToString :
arr : 'T[] *
?seperator : string
(* Defaults:
let _seperator = defaultArg seperator ", "
*)
-> string
Parameters
- arr
- Type: T
The arr. - seperator (Optional)
- Type: SystemString
The seperator.
Type Parameters
- T
Return Value
Type:
String
A
String that represents this instance.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type . 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).
See Also