I have a function readLines
that reads in 10 lines in an Excel sheet and returns a Dictionary. I want to store the results from this function in a global Dictionary that gets populated at start and then is global available to all other parts of my script.
What I would do in the case of an Integer is to declare the following in an empty module:
Public Cons GLOBAL As Integer = 1
however
Public Cons GLOBAL as Dictionary = readLines
Does not work for this.
Any suggestions?