Click here to Skip to main content
16,006,535 members
Home / Discussions / C#
   

C#

 
GeneralRe: Covariant return types? Pin
S. Senthil Kumar29-May-05 19:23
S. Senthil Kumar29-May-05 19:23 
GeneralRe: Covariant return types? Pin
FriendlyFiend29-May-05 20:19
FriendlyFiend29-May-05 20:19 
GeneralRe: Covariant return types? Pin
S. Senthil Kumar29-May-05 20:47
S. Senthil Kumar29-May-05 20:47 
AnswerRe: Covariant return types? Pin
Kevin McFarlane30-May-05 1:47
Kevin McFarlane30-May-05 1:47 
GeneralRe: Covariant return types? Pin
S. Senthil Kumar30-May-05 3:45
S. Senthil Kumar30-May-05 3:45 
GeneralRe: Covariant return types? Pin
Kevin McFarlane30-May-05 4:39
Kevin McFarlane30-May-05 4:39 
QuestionHow to use texture bar in AxMSChart Pin
luckyeagle29-May-05 3:52
luckyeagle29-May-05 3:52 
GeneralCustom Control Woes Pin
notacake29-May-05 3:12
notacake29-May-05 3:12 
GeneralRe: Custom Control Woes Pin
spif200130-May-05 1:55
spif200130-May-05 1:55 
GeneralRe: Custom Control Woes Pin
spif200130-May-05 1:59
spif200130-May-05 1:59 
GeneralRe: Custom Control Woes Pin
notacake30-May-05 2:44
notacake30-May-05 2:44 
Generaluse a per pixel image as background form Pin
Sasuko29-May-05 2:31
Sasuko29-May-05 2:31 
GeneralThe difference between . and , Pin
johanhertz29-May-05 2:29
johanhertz29-May-05 2:29 
GeneralRe: The difference between . and , Pin
Colin Angus Mackay29-May-05 3:11
Colin Angus Mackay29-May-05 3:11 
GeneralRe: The difference between . and , Pin
FriendlyFiend29-May-05 20:34
FriendlyFiend29-May-05 20:34 
GeneralRe: The difference between . and , Pin
johanhertz30-May-05 19:34
johanhertz30-May-05 19:34 
GeneralReadOnly GroupBox/Radio Buttons Pin
den2559729-May-05 0:51
den2559729-May-05 0:51 
GeneralRe: ReadOnly GroupBox/Radio Buttons Pin
Christian Graus29-May-05 0:58
protectorChristian Graus29-May-05 0:58 
GeneralRe: ReadOnly GroupBox/Radio Buttons Pin
nemopeti1-Jun-05 0:23
nemopeti1-Jun-05 0:23 
QuestionOutlook Customise Forms? Pin
davebarkshire29-May-05 0:23
davebarkshire29-May-05 0:23 
GeneralStreamWriter not working Pin
Niklas Ulvinge28-May-05 23:42
Niklas Ulvinge28-May-05 23:42 
GeneralRe: StreamWriter not working Pin
Colin Angus Mackay28-May-05 23:57
Colin Angus Mackay28-May-05 23:57 
GeneralRe: StreamWriter not working Pin
Niklas Ulvinge29-May-05 0:01
Niklas Ulvinge29-May-05 0:01 
GeneralRe: StreamWriter not working Pin
Colin Angus Mackay29-May-05 0:05
Colin Angus Mackay29-May-05 0:05 
GeneralRe: StreamWriter not working Pin
Niklas Ulvinge29-May-05 0:12
Niklas Ulvinge29-May-05 0:12 
OK, now I get it...
This is what I got now:

public void SaveXML(string path)
{
StreamWriter SW = new StreamWriter(path, false);
SW.Write("<neural network="">");
//...

SW.Flush();
SW.Close();
}

It doesn't work.
The file is empty.

The PROgrammer Niklas Ulvinge aka IDK

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.