Constructor for Abstract MfCollectionBase Class
obj := new MfCollectionBase()
Throws MfNotSupportedException if this Abstract class constructor is called directly.
Derived classes must call base.__New() in their constructors.
Abstract Class
class MyClass extends MfCollectionBase
{
m_value := "" __New(Value)
{
base.__New()
this.m_value := Value
}
; Other code here...
}