How to Create a Method with 'new' keyword in its method signature using codedom

I want to dynamically generate a method with 'new' keyword in its method signature using codedom. Want to generate something like this

private new void MyMethod()
{ 

}
Jon Skeet
people
quotationmark

When you call TypeBuilder.DefineMethod, just include MethodAttributes.NewSlot:

Indicates that the method always gets a new slot in the vtable.

people

See more on this question at Stackoverflow