Constructor()

Namespace ›› System ›› MfCollectionBase ›› Methods ››
Parent Previous Next

Constructor()

Constructor for Abstract MfCollectionBase Class

obj := new MfCollectionBase()

Throws

Throws MfNotSupportedException if this Abstract class constructor is called directly.

Remarks

Derived classes must call base.__New() in their constructors.
Abstract Class

Example

class MyClass extends MfCollectionBase
{
       m_value := "" __New(Value)
       {
               base.__New()
               this.m_value := Value
       }

       ; Other code here...
}