IEnumerableExtensionNewAltID Method

Generates a new value for the AltID property that has not yet been used in values.

Definition

Namespace: FolkerKinzel.VCards.Extensions
Assembly: FolkerKinzel.VCards (in FolkerKinzel.VCards.dll) Version: 8.0.1+a91cc3f0fd39aeb548e16006a60ca9dd10a304a2
C#
public static string NewAltID(
	this IEnumerable<VCardProperty?>? values
)

Parameters

values  IEnumerableVCardProperty
The collection of VCardProperty objects to examine. The collection may be null, empty, or may contain null values.

Return Value

String
A new, unused value for the AltID properties of the objects in values.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerableVCardProperty. 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