Click here to Skip to main content
15,902,635 members
Home / Discussions / C#
   

C#

 
GeneralRe: instanciate a FileHelperEngine Question Pin
DaveyM6914-Feb-09 22:18
professionalDaveyM6914-Feb-09 22:18 
QuestionReading A Specific value From Txt File Pin
wwwxyz14-Feb-09 8:53
wwwxyz14-Feb-09 8:53 
AnswerRe: Reading A Specific value From Txt File Pin
Wendelius14-Feb-09 9:11
mentorWendelius14-Feb-09 9:11 
AnswerRe: Reading A Specific value From Txt File Pin
Calin Tatar14-Feb-09 9:14
Calin Tatar14-Feb-09 9:14 
AnswerRe: Reading A Specific value From Txt File Pin
Nuri Ismail14-Feb-09 9:18
Nuri Ismail14-Feb-09 9:18 
GeneralRe: Reading A Specific value From Txt File Pin
wwwxyz14-Feb-09 9:28
wwwxyz14-Feb-09 9:28 
GeneralRe: Reading A Specific value From Txt File Pin
Deresen14-Feb-09 11:01
Deresen14-Feb-09 11:01 
AnswerRe: Reading A Specific value From Txt File Pin
wwwxyz14-Feb-09 11:18
wwwxyz14-Feb-09 11:18 
thanks for replies
t1.txt is:
11
22
33
44
55
.
.

how can I get x value? x=a(line's 1 value)+b(line's 3 value)+c(line 5)that is c must 99

using System;<br />
using System.IO;<br />
<br />
class MainClass<br />
{<br />
    public static void Main(string[] args)<br />
    {<br />
        try<br />
        {<br />
            FileStream fs = new FileStream("c:\\t1.txt", FileMode.Open);<br />
            StreamReader sr = new StreamReader(fs);<br />
<br />
            string line = "";<br />
<br />
            int lineNo = 0;<br />
            do<br />
            {<br />
                line = sr.ReadLine();<br />
                if (line != null)<br />
                {<br />
                    Console.WriteLine("{0}: {1}", lineNo, line);<br />
                    lineNo++;<br />
                  x=a+b+c;-------->values=?<br />
                }<br />
            } while (line != null);<br />
        }<br />
        catch (Exception e)<br />
        {<br />
            Console.WriteLine("Exception in ShowFile: {0}", e);<br />
        }<br />
    }<br />
}

GeneralRe: Reading A Specific value From Txt File Pin
Deresen14-Feb-09 11:30
Deresen14-Feb-09 11:30 
GeneralRe: Reading A Specific value From Txt File Pin
wwwxyz14-Feb-09 11:53
wwwxyz14-Feb-09 11:53 
Questionimagemap with highlight Pin
Axell14-Feb-09 8:19
Axell14-Feb-09 8:19 
AnswerRe: imagemap with highlight Pin
Nuri Ismail14-Feb-09 8:27
Nuri Ismail14-Feb-09 8:27 
GeneralRe: imagemap with highlight Pin
DaveyM6914-Feb-09 8:29
professionalDaveyM6914-Feb-09 8:29 
GeneralRe: imagemap with highlight Pin
Axell14-Feb-09 8:34
Axell14-Feb-09 8:34 
GeneralRe: imagemap with highlight Pin
DaveyM6914-Feb-09 11:29
professionalDaveyM6914-Feb-09 11:29 
AnswerRe: imagemap with highlight Pin
DaveyM6914-Feb-09 8:28
professionalDaveyM6914-Feb-09 8:28 
Questionarray table or string table Pin
abbd14-Feb-09 7:38
abbd14-Feb-09 7:38 
AnswerRe: array table or string table Pin
Nuri Ismail14-Feb-09 8:04
Nuri Ismail14-Feb-09 8:04 
GeneralRe: array table or string table Pin
abbd14-Feb-09 8:39
abbd14-Feb-09 8:39 
GeneralRe: array table or string table Pin
hendrik14-Feb-09 8:53
hendrik14-Feb-09 8:53 
GeneralRe: array table or string table Pin
Nuri Ismail14-Feb-09 8:55
Nuri Ismail14-Feb-09 8:55 
GeneralRe: array table or string table Pin
abbd14-Feb-09 8:59
abbd14-Feb-09 8:59 
AnswerRe: array table or string table Pin
Nuri Ismail14-Feb-09 9:02
Nuri Ismail14-Feb-09 9:02 
GeneralRe: array table or string table Pin
abbd14-Feb-09 9:14
abbd14-Feb-09 9:14 
AnswerRe: array table or string table Pin
Nuri Ismail14-Feb-09 9:21
Nuri Ismail14-Feb-09 9:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.