|
ArrayExtensionsToStringK, V Method (IDictionaryK, V, Char)
|
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<K, V>(
this IDictionary<K, V> arr,
char seperator = ','
)
<ExtensionAttribute>
Public Shared Function ToString(Of K, V) (
arr As IDictionary(Of K, V),
Optional seperator As Char = ","C
) As String
Dim arr As IDictionary(Of K, V)
Dim seperator As Char
Dim returnValue As String
returnValue = arr.ToString(seperator)
public:
[ExtensionAttribute]
generic<typename K, typename V>
static String^ ToString(
IDictionary<K, V>^ arr,
wchar_t seperator = L','
)
[<ExtensionAttribute>]
static member ToString :
arr : IDictionary<'K, 'V> *
?seperator : char
(* Defaults:
let _seperator = defaultArg seperator ','
*)
-> string
Parameters
- arr
- Type: System.Collections.GenericIDictionaryK, V
The arr. - seperator (Optional)
- Type: SystemChar
The seperator.
Type Parameters
- K
- V
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
IDictionaryK,
V. 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