Constructor()

Namespace ›› System ›› MfEqualityComparerBase ›› Methods ››
Parent Previous Next

Constructor()

Constructor for abstract class MfEqualityComparerBase

OutputVar := new MfEqualityComparerBase()

Throws

Throws MfNotSupportedException if this Abstract class constructor is called directly.

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

Remarks

Abstract Class

Example

class MyStringCompare extends MfEqualityComparerBase
{
       __New()
       {
               base.__New()
       }

       ; Other code here...
}