TestAccount.TestAccount C# (CSharp) Method

TestAccount() public method

public TestAccount ( int id, string name, int sex ) : System.Collections.Generic
id int
name string
sex int
return System.Collections.Generic
    public TestAccount(int id, string name, int sex)
    {
        this.id = id;
        this.name = name;
        this.sex = sex;
    }
TestAccount