AssessmentAnywhere.Services.Users.UserRepo.Exists C# (CSharp) Method

Exists() public method

public Exists ( string username ) : bool
username string
return bool
        public bool Exists(string username)
        {
            return Users.ContainsKey(username.ToLower());
        }