Click here to Skip to main content
15,888,026 members
Home / Discussions / C#
   

C#

 
AnswerRe: XML [modified] Pin
harold aptroot12-Mar-09 5:03
harold aptroot12-Mar-09 5:03 
GeneralRe: XML Pin
mrithula813-Mar-09 0:16
mrithula813-Mar-09 0:16 
GeneralRe: XML Pin
mrithula813-Mar-09 5:40
mrithula813-Mar-09 5:40 
GeneralRe: XML Pin
harold aptroot13-Mar-09 5:50
harold aptroot13-Mar-09 5:50 
GeneralRe: XML Pin
mrithula813-Mar-09 6:57
mrithula813-Mar-09 6:57 
GeneralRe: XML Pin
harold aptroot13-Mar-09 7:33
harold aptroot13-Mar-09 7:33 
AnswerRe: XML Pin
Michael Bookatz12-Mar-09 5:17
Michael Bookatz12-Mar-09 5:17 
Questionrecieving error in this program Pin
Nettai12-Mar-09 4:45
Nettai12-Mar-09 4:45 
i am reading datas in text file and write into another text file..but getting exception ...

FileStream fs=new FileStream("C:\\Vicky\\DATAS\\1.txt",FileMode.OpenOrCreate,FileAccess.Write);
StreamWriter sw = new StreamWriter(fs);



FileStream fs1 = new FileStream("c:\\one.txt", FileMode.Open, FileAccess.Read);
StreamReader sr = new StreamReader(fs1);
string[] s = new string[500];
for(int i = 0; i <= 500; i++)
{
s[i] = sr.ReadLine();
}

for (int j = 0; j <= 500; j++)
{
sw.WriteLine(s[j]);
}
sw.Close();
sr.Close();
fs.Close();
fs1.Close();

error is:

Index was outside the bounds of the array.in s[i]=sr.readline().....
AnswerRe: recieving error in this program Pin
Teuz12-Mar-09 5:01
Teuz12-Mar-09 5:01 
GeneralRe: recieving error in this program Pin
Nettai12-Mar-09 5:14
Nettai12-Mar-09 5:14 
GeneralRe: recieving error in this program Pin
Teuz12-Mar-09 5:18
Teuz12-Mar-09 5:18 
GeneralRe: recieving error in this program Pin
#realJSOP12-Mar-09 5:41
mve#realJSOP12-Mar-09 5:41 
GeneralRe: recieving error in this program Pin
Luc Pattyn12-Mar-09 6:12
sitebuilderLuc Pattyn12-Mar-09 6:12 
GeneralRe: recieving error in this program Pin
fred_12-Mar-09 8:03
fred_12-Mar-09 8:03 
Questionconnecting to the Deleted Objects container in AD Pin
lane0p212-Mar-09 4:43
lane0p212-Mar-09 4:43 
Questiondatabase in sql server 2000 using c# Pin
mariamkhaqan12-Mar-09 4:37
mariamkhaqan12-Mar-09 4:37 
AnswerRe: database in sql server 2000 using c# Pin
Teuz12-Mar-09 5:05
Teuz12-Mar-09 5:05 
GeneralRe: database in sql server 2000 using c# Pin
mariamkhaqan13-Mar-09 3:01
mariamkhaqan13-Mar-09 3:01 
AnswerRe: database in sql server 2000 using c# Pin
Michael Bookatz12-Mar-09 5:23
Michael Bookatz12-Mar-09 5:23 
GeneralRe: database in sql server 2000 using c# Pin
mariamkhaqan13-Mar-09 3:00
mariamkhaqan13-Mar-09 3:00 
QuestionSimple question about controls Pin
bouli12-Mar-09 4:14
bouli12-Mar-09 4:14 
AnswerRe: Simple question about controls Pin
RyanMorris12-Mar-09 4:20
RyanMorris12-Mar-09 4:20 
GeneralRe: Simple question about controls [modified] Pin
bouli12-Mar-09 4:30
bouli12-Mar-09 4:30 
GeneralRe: Simple question about controls Pin
RyanMorris12-Mar-09 4:55
RyanMorris12-Mar-09 4:55 
AnswerRe: Simple question about controls Pin
Yusuf12-Mar-09 4:25
Yusuf12-Mar-09 4:25 

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.