Virtual PhotonicsNamespace: Vts.ExtensionsAssembly: Vts (in Vts.dll) Version: 1.0.12.0 (1.0.12)
public static TArray PopulateFromEnumerable2<T, TArray>(
this TArray myArray,
IEnumerable<T> enumerable
)
where T : struct, new()
public static TArray PopulateFromEnumerable2<T, TArray>(
this TArray myArray,
IEnumerable<T> enumerable
)
where T : struct, new()
<ExtensionAttribute>
Public Shared Function PopulateFromEnumerable2(Of T As {Structure, New}, TArray) (
myArray As TArray,
enumerable As IEnumerable(Of T)
) As TArray
<ExtensionAttribute>
Public Shared Function PopulateFromEnumerable2(Of T As {Structure, New}, TArray) (
myArray As TArray,
enumerable As IEnumerable(Of T)
) As TArray
public:
[ExtensionAttribute]
generic<typename T, typename TArray>
where T : value class, gcnew()
static TArray PopulateFromEnumerable2(
TArray myArray,
IEnumerable<T>^ enumerable
)
public:
[ExtensionAttribute]
generic<typename T, typename TArray>
where T : value class, gcnew()
static TArray PopulateFromEnumerable2(
TArray myArray,
IEnumerable<T>^ enumerable
)
- T
- TArray
Return Value
Type:
TArrayUsage 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).