Welcome to mirror list, hosted at ThFree Co, Russian Federation.

TODO « System « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 065809deedb5a79e7a0c4e04c7f9a9a43065e760 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
System.Object:
	Need a mechanism for getting an object underlying type.

System.ValueType:
	Need to lock memory and "scan" the actual contents to compute
	hash code and do comparissions.  Should be simple to do with
	C#, the problem is figuring out the size of the object.

System.String:
	Need to implement the Format() and CompareOrdinal() methods 
	as we all implement all of the methods that take into account 
	CultureInfo or Encoding stuff.

System.Array:
	It's not possible to test to see if the whole thing works, as
	GetValue() and SetValue() make calls into the runtime. However,
	I've tried my implementations of things like BinarySearch() and
	Sort() on the MS-provided System.Array and they seem to work fine.
	According to the spec, System.Array implements the IList interface.
	The spec doesn't have the methods for those interfaces, however,
	the class doesn't (yet) implement that interface and those methods
	are not (yet) written.