Jad_Bot.Account.CreateAccount C# (CSharp) Метод

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

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.
Результат 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;
        }