This documentation is archived and is not being maintained.
ElementInit Class
Visual Studio 2008
Represents an initializer for a single element of an IEnumerable collection.
Assembly: System.Core (in System.Core.dll)
The following example creates an ElementInit that represents the initialization of an element of a dictionary collection.
Dim tree As String = "maple" Dim addMethod As System.Reflection.MethodInfo = _ Type.GetType("System.Collections.Generic.Dictionary`2[System.Int32, System.String]").GetMethod("Add") ' Create an ElementInit that represents calling ' Dictionary(Of Integer, String).Add(tree.Length, tree). Dim elementInit As System.Linq.Expressions.ElementInit = _ System.Linq.Expressions.Expression.ElementInit( _ addMethod, _ System.Linq.Expressions.Expression.Constant(tree.Length), _ System.Linq.Expressions.Expression.Constant(tree)) Console.WriteLine(elementInit.ToString()) ' This code produces the following output: ' ' Void Add(Int32, System.String)(5,"maple")
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: