GlobalcachingApplication.Plugins.AutoUpdater.PluginSettings.GetSelectedCountries C# (CSharp) Method

GetSelectedCountries() public method

public GetSelectedCountries ( ) : int[]
return int[]
        public int[] GetSelectedCountries()
        {
            return (from a in AreaInfoItems where a.Level == "Land" && GetUpdateAreaInfo(a) select a.Code).ToArray();
        }