code to generate a excel sheet and to write data into it ---
-it has to fetch the excel
sheet which is in one folder placed by us inside a project
folder(i,e it has to create a instance of that excel sheet)
and write the data into it row by row please respond as
early as possible



code to generate a excel sheet and to write data into it --- -it has to fetch the excel sheet whic..

Answer / uiky

string outputFile1 = "C:\\abc.xls";

FileInfo outputFileInfo1 =
new FileInfo(outputFile1);
FileStream outfs1 = null;
if(outputFileInfo1.Exists)
outfs1 =
outputFileInfo1.Open(FileMode.Open);
else
outfs1 =
outputFileInfo1.Open(FileMode.CreateNew);
TextWriter tw1 = new
StreamWriter(outfs1);

Is This Answer Correct ?    3 Yes 3 No

Post New Answer

More C Sharp Interview Questions

What is console based application?

0 Answers  


Do extension methods have to be static?

0 Answers  


Is datetime value type c#?

0 Answers  


What is the difference between internal and private in c#?

0 Answers  


What namespace is list in c#?

0 Answers  


What is difference between array and list?

0 Answers  


what is scope of a protected internal member variable of a c# class

0 Answers   Cognizant,


Is object an int c#?

0 Answers  


What is cshtml?

0 Answers  


What is the use of the dispose method in C# ?

0 Answers   Infosys,


Why is static constructor called first?

0 Answers  


Why are mutable structs evil?

0 Answers  


Categories