开发者

How to display char in grid lines using c#

I am working on a desktop application develop in C#. what i want to do is to:

Open a text file(.txt) Read Data Line By Line Create a grid type structure(i.e combination of horizontal and vertic开发者_如何转开发al line) Then take first line and display its each char in single cell And the take second line and display its each char in single cell and so on.

Since i am beginner so i don't have any idea that how to acheive this. I only want some suggestions and guidance.


Well, this is actually easy to do provided you compose the correct items together to get your result.

You'll want to look up File operations, string manipulation (as well as the knowledge that a string is nothing but an enumerable of chars), and then some simple looping to get what you want.

At a high level, you'll just be needing to get the math right to display your set of text as a grid in X columns by Y rows.


Use File.ReadAllLines(). It will give you and array of strings - line by line.

For each string returned by ReadAllLines use string.ToCharArray. It will give you an array of symbols in string.

Update:

Number of columns in grid will be equal to max length of char array. Number of rows - to number of lines. Hope, I understood your task correctly.


Sounds like a homework problem?

Use the File class to read your text file. As far as printing the output to the screen, you have many options...if you're building a console application the you could just write characters to the output using the Console methods.

Hint: to split each line of text into characters, use the ToCharArray() method on the String class.


here is how you can read from a text file line by line

    int counter = 0;
    string line;

    // Read the file and display it line by line.
    System.IO.StreamReader file = 
       new System.IO.StreamReader("c:\\test.txt");
    while((line = file.ReadLine()) != null)
    {
       Console.WriteLine (line);
       counter++;
    }

file.Close();

// Suspend the screen.
Console.ReadLine();

http://msdn.microsoft.com/en-us/library/aa287535(v=vs.71).aspx

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜