E
Eric Cathell
I have an integer array that I want to fill from my config.app file...
i have this setup
dim myArray() as integer=appsettings.GetValue("myArray",
GetType(System.int32))
my configuration is set as follows
<add key="myArray" value="{6,7,15}" />
however i get an error saying the value is not an integer type....however if
i comment out my appsettings and put my values in curly braces on the line
it works fine...
any suggestions on how to do this?
Eric
i have this setup
dim myArray() as integer=appsettings.GetValue("myArray",
GetType(System.int32))
my configuration is set as follows
<add key="myArray" value="{6,7,15}" />
however i get an error saying the value is not an integer type....however if
i comment out my appsettings and put my values in curly braces on the line
it works fine...
any suggestions on how to do this?
Eric