Click here to Skip to main content
15,913,027 members
Home / Discussions / C#
   

C#

 
GeneralRe: C# readonly reference (like C++ const reference ) Pin
DavidNohejl14-Jan-08 4:56
DavidNohejl14-Jan-08 4:56 
AnswerRe: C# readonly reference (like C++ const reference ) Pin
Zeinpresiyo14-Jan-08 6:12
Zeinpresiyo14-Jan-08 6:12 
GeneralRe: C# readonly reference (like C++ const reference ) Pin
Pete O'Hanlon14-Jan-08 9:53
mvePete O'Hanlon14-Jan-08 9:53 
GeneralRe: C# readonly reference (like C++ const reference ) Pin
Zeinpresiyo17-Jan-08 0:04
Zeinpresiyo17-Jan-08 0:04 
Questiondeleting a file in use Pin
Ofori Boadu14-Jan-08 3:06
Ofori Boadu14-Jan-08 3:06 
GeneralRe: deleting a file in use Pin
benjymous14-Jan-08 3:13
benjymous14-Jan-08 3:13 
GeneralRe: deleting a file in use Pin
Ofori Boadu14-Jan-08 3:32
Ofori Boadu14-Jan-08 3:32 
GeneralRe: deleting a file in use Pin
S. Senthil Kumar14-Jan-08 3:21
S. Senthil Kumar14-Jan-08 3:21 
You probably are not closing the file you previously opened for writing. If you are using the StreamWriter to write the contents, make sure you call Dispose after you're done with it. Or wrap it in a "using" block like
using (StreamWriter writer = new StreamWriter(...))
{
   writer.blah();
}


Regards
Senthil [MVP - Visual C#]
_____________________________
My Blog | My Articles | My Flickr | WinMacro

GeneralRe: deleting a file in use Pin
Luc Pattyn14-Jan-08 5:48
sitebuilderLuc Pattyn14-Jan-08 5:48 
QuestionSetting BackColor & ForeColor of each Component Pin
Programm3r14-Jan-08 2:43
Programm3r14-Jan-08 2:43 
GeneralRe: Setting BackColor & ForeColor of each Component Pin
benjymous14-Jan-08 2:53
benjymous14-Jan-08 2:53 
QuestionRe: Setting BackColor & ForeColor of each Component Pin
Programm3r14-Jan-08 2:59
Programm3r14-Jan-08 2:59 
GeneralRe: Setting BackColor & ForeColor of each Component Pin
benjymous14-Jan-08 3:01
benjymous14-Jan-08 3:01 
GeneralRe: Setting BackColor & ForeColor of each Component Pin
Programm3r14-Jan-08 3:07
Programm3r14-Jan-08 3:07 
QuestionRe: Setting BackColor & ForeColor of each Component Pin
Programm3r14-Jan-08 3:15
Programm3r14-Jan-08 3:15 
GeneralRe: Setting BackColor & ForeColor of each Component Pin
benjymous14-Jan-08 3:33
benjymous14-Jan-08 3:33 
GeneralRe: Setting BackColor & ForeColor of each Component Pin
Programm3r14-Jan-08 3:46
Programm3r14-Jan-08 3:46 
GeneralForce Dropdown of a DateTimePicker Pin
StyleGuide14-Jan-08 1:27
StyleGuide14-Jan-08 1:27 
Questionhello , can any one suggest me how to do this and where i can read more about this? Pin
prasadbuddhika14-Jan-08 1:18
prasadbuddhika14-Jan-08 1:18 
AnswerRe: hello , can any one suggest me how to do this and where i can read more about this? Pin
stancrm14-Jan-08 3:11
stancrm14-Jan-08 3:11 
QuestionComunication PC to PC by RS232! Pin
cute_noel14-Jan-08 0:30
cute_noel14-Jan-08 0:30 
GeneralRe: Comunication PC to PC by RS232! Pin
Paddy Boyd14-Jan-08 1:29
Paddy Boyd14-Jan-08 1:29 
GeneralRe: Comunication PC to PC by RS232! Pin
stancrm14-Jan-08 1:37
stancrm14-Jan-08 1:37 
GeneralRe: Comunication PC to PC by RS232! Pin
cute_noel15-Jan-08 3:49
cute_noel15-Jan-08 3:49 
GeneralRotate rect Pin
Try14-Jan-08 0:06
Try14-Jan-08 0:06 

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.