ConfigurationManager og int arrays int[]
HejJeg er gået over til at benytte Entlib.ConfigurationManager til at læse config filer. Mit spørgsmål går nu på hvorledes, jeg kan læse eksempelvis int[] ind i min application.
eks:
<ProductTypes>1,2,3,4,7</ProductTypes>
vil jeg gerne læse ind i
class Configuration {
...
...
private int[] productType
...
public int[] ProductType
{
get
{
return productType;
}
set
{
productType value;
}
}
....
}