C# simple error: Storing characters in a string array....

Posted by user300484 on Stack Overflow See other posts from Stack Overflow or by user300484
Published on 2010-04-02T15:38:25Z Indexed on 2010/04/02 15:43 UTC
Read the original article Hit count: 241

Filed under:

Hello you all! I want to store every single character of a string value in every single place of a string array.

I wrote this code but Visual Studio says that "Cannot implicitly convert type String to String []".

Can you please tell me how to fix this?

string [] array = Console.ReadLine();

© Stack Overflow or respective owner

Related posts about c#