IEnumerableExtensionUnsetIndexesTSource Method
Namespace: FolkerKinzel.VCards.ExtensionsAssembly: FolkerKinzel.VCards (in FolkerKinzel.VCards.dll) Version: 8.1.0+9753915cd0f8006e7e5b4f62aa63aa3651006f06
public static void UnsetIndexes<TSource>(
this IEnumerable<TSource>? values
)
where TSource : VCardProperty, IEnumerable<TSource>
<ExtensionAttribute>
Public Shared Sub UnsetIndexes(Of TSource As {VCardProperty, IEnumerable(Of TSource)}) (
values As IEnumerable(Of TSource)
)
public:
[ExtensionAttribute]
generic<typename TSource>
where TSource : VCardProperty, IEnumerable<TSource>
static void UnsetIndexes(
IEnumerable<TSource>^ values
)
[<ExtensionAttribute>]
static member UnsetIndexes :
values : IEnumerable<'TSource> -> unit when 'TSource : VCardProperty and IEnumerable<'TSource>
- values IEnumerableTSource
- An IEnumerableT of VCardProperty
objects. The collection may be null, empty, or may contain null
references.
- TSource
- Generic type parameter that's constrained to be a class that's
derived from VCardProperty.
In Visual Basic and C#, you can call this method as an instance method on any object of type
IEnumerableTSource. 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).