Ejemplo n.º 1
0
 /// <summary>
 /// Converts the specified GUID <paramref name="values"/> to their numerical representations.
 /// </summary>
 /// <param name="values">A collection of GUIDs to be converted.</param>
 /// <returns>An array of <see cref="int"/> representations of the specified GUIDs.</returns>
 public static int[] ToInt32Array(this IEnumerable <Guid> values)
 {
     return(GuidUtils.ToInt32Array(values));
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Converts the specified GUID <paramref name="values"/> to their numerical representations.
 /// </summary>
 /// <param name="values">A collection of GUIDs to be converted.</param>
 /// <returns>An array of <see cref="int"/> representations of the specified GUIDs.</returns>
 public static int[] ToInt32Array(this Guid[] values)
 {
     return(GuidUtils.ToInt32Array(values));
 }