Jad_Bot.Account.CreateAccount C# (CSharp) Method

CreateAccount() public static method

Create a new Account object.
public static CreateAccount ( global username, global password, global userLevel ) : Account
username global Initial value of the Username property.
password global Initial value of the Password property.
userLevel global Initial value of the UserLevel property.
return Account
        public static Account CreateAccount(global::System.String username, global::System.String password, global::System.String userLevel)
        {
            Account account = new Account();
            account.Username = username;
            account.Password = password;
            account.UserLevel = userLevel;
            return account;
        }