Is it possible to add a constructor extension method ? I want to add a List< T > constructor to receive specific amount of bytes out of a given partially filled buffer (w
I know this is a bump, just wanted to point out you can inherit the List class and do something like this:
class List : System.Collections.Generic.List { public List(T[] a, int n) : base() { AddRange(a, n); } }