BetterMembership.IntegrationTests.Helpers.ProfileProviderCollectionExtensions.ToArray C# (CSharp) Метод

ToArray() публичный статический Метод

public static ToArray ( this collection ) : System.Web.Profile.ProfileInfo[]
collection this
Результат System.Web.Profile.ProfileInfo[]
        public static ProfileInfo[] ToArray(this ProfileInfoCollection collection)
        {
            var profiles = new ProfileInfo[collection.Count];
            collection.CopyTo(profiles, 0);
            return profiles;
        }
    }
ProfileProviderCollectionExtensions