String handle in C#

Posted by Chelsea_cole on Stack Overflow See other posts from Stack Overflow or by Chelsea_cole
Published on 2010-04-23T05:53:18Z Indexed on 2010/04/23 6:03 UTC
Read the original article Hit count: 248

Filed under:

I don't understand the use of "get" and "set" command, how to add a list of the accounts using the code below and someone give me some example to fix the error? Thanks! :(

    public class Account
    {

        public string UserName

        {get rerurn textBox1.Test; // error
        set UserName = textBox1.Text;} // error

        public string Password { get; set; }
        public string RePassword { get; set; }
        public string Name { get; set; }
        public string bd { get; set; }
        public string dt { get; set; }
        public string dc { get; set; }
    }
    public class ListAcc
    {
        static void Data()
        {
            List<Account> UserList = new List<Account>();
        }
    }

© Stack Overflow or respective owner

Related posts about c#