Care.Views.Preference.SetFreshItemCount.IndexToValue C# (CSharp) Method

IndexToValue() private method

private IndexToValue ( int index ) : String
index int
return String
        private String IndexToValue(int index)
        {
            if(index >= 0 && index < source.Length )
                return source[index];
            // 失败了返回20
            return source[0];
        }