I am building an app in c that allows a user to register a u
I am building an app in c# that allows a user to register a username and password, and then also login. I need help with creating the following code:
1) Declare a structure, Account, that has name and password fields.
2) Declare a List of type Account that will be used to store registered accounts.
Solution
struct Account
{
public string name ;
public string password;
}
{
account.add(\"john\",\"losangles\");
account.add(\"smitha\",eagle\");
.
. //you can add any number of entries
};
