hi,
in case sequence<> is generated with the meta tag ["cs:collection"]
it would be nice to have the BinarySearch and Sort methods available.
the generated code will look like:
this is actually pretty straight foreward.Code:public int BinarySearch(C value) { return InnerList.BinarySearch(value); } public void Sort() { return InnerList.Sort(); }
thx & cu tom
PS: adding the contructor with parameter ICollection c would help as well.

Reply With Quote