SpreadTooThin
2016-07-24 17:15:19 UTC
I have a list of string that I need to using in a few places in my program.
List<String> MyKnownFruit = new List<String>() = {"Apples", "Bananas", "Cherries", "Donuts"};
So how should I add this to my application source such that I can use it in one or two places?
List<String> MyKnownFruit = new List<String>() = {"Apples", "Bananas", "Cherries", "Donuts"};
So how should I add this to my application source such that I can use it in one or two places?