LoadModule() public method

Loads a module of ExcelFunctions to the function repository.
public LoadModule ( IFunctionModule module ) : void
module IFunctionModule A that can be used for adding functions
return void
示例#1
0
        public static FunctionRepository Create()
        {
            var repo = new FunctionRepository();

            repo.LoadModule(new BuiltInFunctions());
            return(repo);
        }
 public static FunctionRepository Create()
 {
     var repo = new FunctionRepository();
     repo.LoadModule(new BuiltInFunctions());
     return repo;
 }