Ok, can someone please tell me how to make it so that the
person can type their name in. The char variable is only
for one letter. Thank You.
Jason M. Kikta - 12 Jul 2004 20:22 GMT
Type their name into what? How about a code snippet so we know what you're
talking about here? It sounds like you want string.
Jason
> Ok, can someone please tell me how to make it so that the
> person can type their name in. The char variable is only
> for one letter. Thank You.
Ed Kaim [MSFT] - 12 Jul 2004 22:53 GMT
Try using a string, such as:
string name = Console.ReadLine();
> Ok, can someone please tell me how to make it so that the
> person can type their name in. The char variable is only
> for one letter. Thank You.