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:
Code:
public int BinarySearch(C value)
{
return InnerList.BinarySearch(value);
}
public void Sort()
{
return InnerList.Sort();
}
this is actually pretty straight foreward.
thx & cu tom
PS: adding the contructor with parameter ICollection c would help as well.