New test.
[mono.git] / mcs / class / corlib / System / TODO
1 System.Object:
2         Need a mechanism for getting an object underlying type.
3
4 System.ValueType:
5         Need to lock memory and "scan" the actual contents to compute
6         hash code and do comparissions.  Should be simple to do with
7         C#, the problem is figuring out the size of the object.
8
9 System.String:
10         Need to implement the Format() and CompareOrdinal() methods 
11         as we all implement all of the methods that take into account 
12         CultureInfo or Encoding stuff.
13
14 System.Array:
15         It's not possible to test to see if the whole thing works, as
16         GetValue() and SetValue() make calls into the runtime. However,
17         I've tried my implementations of things like BinarySearch() and
18         Sort() on the MS-provided System.Array and they seem to work fine.
19         According to the spec, System.Array implements the IList interface.
20         The spec doesn't have the methods for those interfaces, however,
21         the class doesn't (yet) implement that interface and those methods
22         are not (yet) written.