﻿function createDelegate(obj, method) {
    return function() { return method.apply(obj, arguments) };
}