GooglePlayServices.ResolverVer1_1.CollectionToArray C# (CSharp) Method

CollectionToArray() private static method

Generate an array from a string collection.
private static CollectionToArray ( ICollection enumerator ) : string[]
enumerator ICollection
return string[]
        private static string[] CollectionToArray(ICollection enumerator)
        {
            return (string[])(new ArrayList(enumerator)).ToArray(typeof(string));
        }