IDictionaryExtensionsToExpandoObject Method
Converts an IDictionaryTKey, TValue to ExpandoObject.
Namespace: DevCase.Extensions.IDictionaryExtensionsAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[EditorBrowsableAttribute(EditorBrowsableState.Always)]
public static ExpandoObject ToExpandoObject(
this IDictionary<string, Object> sender
)
<ExtensionAttribute>
<EditorBrowsableAttribute(EditorBrowsableState.Always)>
Public Shared Function ToExpandoObject (
sender As IDictionary(Of String, Object)
) As ExpandoObject
Dim sender As IDictionary(Of String, Object)
Dim returnValue As ExpandoObject
returnValue = sender.ToExpandoObject()
public:
[ExtensionAttribute]
[EditorBrowsableAttribute(EditorBrowsableState::Always)]
static ExpandoObject^ ToExpandoObject(
IDictionary<String^, Object^>^ sender
)
[<ExtensionAttribute>]
[<EditorBrowsableAttribute(EditorBrowsableState.Always)>]
static member ToExpandoObject :
sender : IDictionary<string, Object> -> ExpandoObject
No code example is currently available or this language may not be supported.
- sender IDictionaryString, Object
-
The source IDictionaryTKey, TValue.
ExpandoObject
The resulting
ExpandoObject.
In Visual Basic and C#, you can call this method as an instance method on any object of type
IDictionaryString,
Object. 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).