I have a library that contains, in addition to a set of its own classes, a large number of extension methods, both ones which require references to the library's own classes to make sense, and ones which do not (referencing only BCL classes). For discoverability, I'm considering placing the classes implementing the latter into the System namespace and System.* namespaces such that they're visible to anyone using the classes in the relevant System.* namespace and referencing the library assembly.
(In answering, please assume that I have read both the Framework Design Guidelines and the answers to Is it ok to write my own extension methods in the system namespace? - in short, I know that what I'm doing is, ah, inadvisable, and have decided based on the issues I know about that in this specific case, the game may well be worth the candle anyway. I'm interested in the issues that I don't know about or haven't occurred to me.)
The (obvious) issues I know I'm going to face are:
- potential name clashes between the classes implementing the extension methods and future classes in the System.* namespaces. This one, I'm not too worried about, since as I don't expect the former to ever be called directly, adequate name mangling should make it extremely unlikely that this would ever come up.
- potential name clashes between the extension methods and future instance methods of the System.* classes. This one, I am worried about, but will just have to deal with as and when it comes up; acknowledging the problem but, per above, potentially deeming it worth the risk.
So: what other potential risks and breakages have I missed, here?