BetterMembership.IntegrationTests.Helpers.ProfileProviderCollectionExtensions.ToArray C# (CSharp) Method

ToArray() public static method

public static ToArray ( this collection ) : System.Web.Profile.ProfileInfo[]
collection this
return System.Web.Profile.ProfileInfo[]
        public static ProfileInfo[] ToArray(this ProfileInfoCollection collection)
        {
            var profiles = new ProfileInfo[collection.Count];
            collection.CopyTo(profiles, 0);
            return profiles;
        }
    }
ProfileProviderCollectionExtensions