If I want to implement a custom container control ,I must keep my control inheriting from INamingContainer,It's a interface was defined as a marker interface.As I know,that will make CLR creating control statement into metadata like attribute.
So,I want to know :
Is the .net framework system have only created the metadata for itself's marker interface? Can I Create a marker interface?
What will happen when the CLR compiler is compiling the control inherits from INamingContainer?
What is the function of INamingContainer for container control?
thanks in advance!