Artemis.DAL.ProfileProvider.GetAll C# (CSharp) Метод

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

Get all profiles
public static GetAll ( ) : List
Результат List
        public static List<ProfileModel> GetAll()
        {
            lock (Profiles)
            {
                if (!Profiles.Any())
                    ReadProfiles();

                // Return a new list, this'll make sure removing/updating the retrieved list doesn't 
                // affect the datastore
                return Profiles.ToList();
            }
        }

Same methods

ProfileProvider::GetAll ( EffectModel game, KeyboardProvider keyboard ) : List