In code below I must declare method MdrResponseInterpreter
static
otherwise I have compilation error.
class.... {
private StandardBuilder _mdrResponseBuilder =
new StandardBuilder(MdrResponseInterpreter);
public static bool MdrResponseInterpreter(DNMessageDeliverer builder,
DNFieldSet message)
{
// .... work
}
Why? As _mdrResponseBuilder
is not static I expect that MdrResponseInterpreter
should be able to access this