Overrides MfResourceSingletonBase.GetResourceString()
MfEnvironment.Instance.GetResourceString(key)
MfEnvironment.Instance.GetResourceString(key, arg, arg2, ..., argN)
Gets a resource string from the internal resource file for the specified key.
Gets a resource string from the internal resource file for the specified key. and formats the resource using the value(s) in args.
key
The key of the resource string to retrieve
arg
One or more arguments to format the resource string.
Var Containing string formated with any arg passed in.
msg := MfEnvironment.Instance.GetResourceString("NotSupportedException_AbstractClass", "MyAbstractClass")
ex := new MfNotSupportedException(msg)
ex.SetProp(A_LineFile, A_LineNumber, A_ThisFunc)
throw ex