Skip to content

Instantly share code, notes, and snippets.

@camarin24
Created December 17, 2016 17:43
Show Gist options
  • Save camarin24/adbb98e3e543bdf488a7beae09626a06 to your computer and use it in GitHub Desktop.
Save camarin24/adbb98e3e543bdf488a7beae09626a06 to your computer and use it in GitHub Desktop.
Linq extension method (converto to int array)
public static class LinqExtension
{
public static int[] ConvertToArrayInt<T>(this List<T> data, Func<T,int> lamba)
{
return data.Select(lamba).ToArray();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment