Placing custom code in a System namespace
Posted
by David Brown
on Stack Overflow
See other posts from Stack Overflow
or by David Brown
Published on 2010-04-12T22:18:10Z
Indexed on
2010/04/12
22:22 UTC
Read the original article
Hit count: 453
Are there any best-practices that state custom code shouldn't be placed in a System namespace? Should System and its children be reserved for Microsoft code?
I ask because I'm writing a class library that will be used across many projects and I'd like to keep things consistent by placing it in System.InteropServices (since it deals with P/Invoke).
© Stack Overflow or respective owner