Click here to Skip to main content
15,907,497 members
Home / Discussions / C#
   

C#

 
AnswerRe: Assembly Pin
DavidNohejl6-Feb-07 8:49
DavidNohejl6-Feb-07 8:49 
GeneralRe: Assembly Pin
venuvista6-Feb-07 19:02
venuvista6-Feb-07 19:02 
QuestionXML Datagrid Pin
The Brazilian One6-Feb-07 8:30
The Brazilian One6-Feb-07 8:30 
QuestionIs my system is connected to the Internet?? Pin
Muammar©6-Feb-07 7:57
Muammar©6-Feb-07 7:57 
AnswerRe: Is my system is connected to the Internet?? [modified] Pin
Rizawn6-Feb-07 9:38
Rizawn6-Feb-07 9:38 
GeneralRe: Is my system is connected to the Internet?? Pin
Muammar©6-Feb-07 10:28
Muammar©6-Feb-07 10:28 
Questionnew StreamWriter() vs File.CreateText Pin
Loophole6-Feb-07 7:55
Loophole6-Feb-07 7:55 
AnswerRe: new StreamWriter() vs File.CreateText Pin
Guffa6-Feb-07 8:06
Guffa6-Feb-07 8:06 
This is the implementation of File.CreateText(string):

public static StreamWriter CreateText(string path) {
   if (path == null) {
      throw new ArgumentNullException("path");
   }
   return new StreamWriter(path, false);
}

and this is the implementation of StreamWriter(string, bool) that is uses:

public StreamWriter(string path, bool append) : this(path, append, StreamWriter.UTF8NoBOM, 0x400) { }

and this is the implementation of StreamWriter(string):

public StreamWriter(string path) : this(path, false, StreamWriter.UTF8NoBOM, 0x400) { }

So, they are two different paths to the exact same place.

---
single minded; short sighted; long gone;

QuestionSending bytes over the serial port Pin
Member 36526176-Feb-07 7:23
Member 36526176-Feb-07 7:23 
AnswerRe: Sending bytes over the serial port Pin
Luc Pattyn6-Feb-07 7:31
sitebuilderLuc Pattyn6-Feb-07 7:31 
QuestionThe appropriate application of... Pin
Marc Clifton6-Feb-07 6:45
mvaMarc Clifton6-Feb-07 6:45 
GeneralRe: The appropriate application of... Pin
Martin#6-Feb-07 6:51
Martin#6-Feb-07 6:51 
AnswerRe: The appropriate application of... Pin
Not Active6-Feb-07 7:09
mentorNot Active6-Feb-07 7:09 
AnswerRe: The appropriate application of... Pin
Dan Neely6-Feb-07 7:21
Dan Neely6-Feb-07 7:21 
AnswerRe: The appropriate application of... Pin
Luc Pattyn6-Feb-07 7:24
sitebuilderLuc Pattyn6-Feb-07 7:24 
AnswerRe: The appropriate application of... Pin
Guffa6-Feb-07 7:56
Guffa6-Feb-07 7:56 
AnswerRe: The appropriate application of... Pin
DavidNohejl6-Feb-07 8:47
DavidNohejl6-Feb-07 8:47 
AnswerRe: The appropriate application of... Pin
Daniel Turini6-Feb-07 8:57
Daniel Turini6-Feb-07 8:57 
GeneralRe: The appropriate application of... Pin
Marc Clifton6-Feb-07 14:39
mvaMarc Clifton6-Feb-07 14:39 
QuestionYet another MSIL question (ldsfld, ldarg_0 problem) Pin
rcollina6-Feb-07 6:36
rcollina6-Feb-07 6:36 
AnswerRe: Yet another MSIL question (ldsfld, ldarg_0 problem) Pin
Luc Pattyn6-Feb-07 7:40
sitebuilderLuc Pattyn6-Feb-07 7:40 
GeneralRe: Yet another MSIL question (ldsfld, ldarg_0 problem) Pin
rcollina7-Feb-07 1:15
rcollina7-Feb-07 1:15 
GeneralRe: Yet another MSIL question (ldsfld, ldarg_0 problem) Pin
Luc Pattyn7-Feb-07 6:04
sitebuilderLuc Pattyn7-Feb-07 6:04 
Questionhow to notify the application about database updates? Pin
sundar1566-Feb-07 6:03
sundar1566-Feb-07 6:03 
AnswerRe: how to notify the application about database updates? Pin
Not Active6-Feb-07 7:04
mentorNot Active6-Feb-07 7:04 

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.