Constructor()

Namespace ›› System ›› MfEnumerableBase ›› Methods ››
Parent Previous Next

Constructor()

Constructor for Abstract MfEnumerableBase Class

OutbutVar := new MfEnumerableBase()

Remarks

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

Throws

Throws MfNotSupportedException if this Abstract class constructor is called directly.

Example

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

   ; Other code here...
}