Click here to Skip to main content
15,899,935 members
Home / Discussions / C#
   

C#

 
AnswerRe: Reading from a network stream problem Pin
WillemM3-Apr-07 1:18
WillemM3-Apr-07 1:18 
QuestionHow I can find out the assembly is COM server or not? Pin
Vlad~2-Apr-07 21:30
Vlad~2-Apr-07 21:30 
QuestionHow to delete a Row in a Text "CSV" file? [modified] Pin
Khoramdin2-Apr-07 21:22
Khoramdin2-Apr-07 21:22 
AnswerRe: How to delete a Row in a Text "CSV" file? Pin
WillemM3-Apr-07 1:23
WillemM3-Apr-07 1:23 
GeneralRe: How to delete a Row in a Text "CSV" file? [modified] Pin
Khoramdin3-Apr-07 5:35
Khoramdin3-Apr-07 5:35 
QuestionError on DataAdapter.Fill() Pin
JacquesDP2-Apr-07 20:56
JacquesDP2-Apr-07 20:56 
AnswerRe: Error on DataAdapter.Fill() Pin
CPallini2-Apr-07 21:20
mveCPallini2-Apr-07 21:20 
GeneralRe: Error on DataAdapter.Fill() Pin
JacquesDP2-Apr-07 21:31
JacquesDP2-Apr-07 21:31 
AnswerRe: Error on DataAdapter.Fill() Pin
sooreeagt2-Apr-07 22:41
sooreeagt2-Apr-07 22:41 
GeneralRe: Error on DataAdapter.Fill() Pin
JacquesDP2-Apr-07 22:44
JacquesDP2-Apr-07 22:44 
Questionhow to implement xmlDOm in c# Pin
sweetnallu2-Apr-07 20:26
sweetnallu2-Apr-07 20:26 
AnswerRe: how to implement xmlDOm in c# Pin
Christian Graus2-Apr-07 20:49
protectorChristian Graus2-Apr-07 20:49 
AnswerRe: how to implement xmlDOm in c# Pin
Sathesh Sakthivel2-Apr-07 20:50
Sathesh Sakthivel2-Apr-07 20:50 
GeneralRe: how to implement xmlDOm in c# Pin
Christian Graus2-Apr-07 21:21
protectorChristian Graus2-Apr-07 21:21 
GeneralRe: how to implement xmlDOm in c# Pin
714-Apr-07 17:52
714-Apr-07 17:52 
Questionhow to split string Pin
sooreeagt2-Apr-07 20:22
sooreeagt2-Apr-07 20:22 
AnswerRe: how to split string Pin
Martin#2-Apr-07 20:31
Martin#2-Apr-07 20:31 
AnswerRe: how to split string Pin
Vinay Dornala2-Apr-07 22:43
Vinay Dornala2-Apr-07 22:43 
GeneralRe: how to split string Pin
Martin#2-Apr-07 23:31
Martin#2-Apr-07 23:31 
QuestionPlz help me in changing position of Main menu Pin
EEmaan2-Apr-07 19:25
EEmaan2-Apr-07 19:25 
AnswerRe: Plz help me in changing position of Main menu Pin
Christian Graus2-Apr-07 20:50
protectorChristian Graus2-Apr-07 20:50 
Questiondownload file memory usage Pin
Planker2-Apr-07 17:51
Planker2-Apr-07 17:51 
AnswerRe: download file memory usage Pin
Phillip M. Hoff2-Apr-07 18:22
Phillip M. Hoff2-Apr-07 18:22 
How exactly are you copying the data from the response stream to the file stream?

Another thing to consider is that looking at memory usage in the Task Manager (which is what I assume you are doing) can often be misleading. The allocated memory listed for a .NET-based application often includes memory which has been collected (i.e. released) as far as the application goes, but which simply hasn't been given back to the system by the runtime. However, that memory can be given back if and when the runtime believes the system needs it.

If there are specific performance (memory or CPU) requirements for your application, then I would suggest using a profiler to help determine where the bottlenecks are in your application.

-Phil
QuestionHow to remove space in a String? Pin
Khoramdin2-Apr-07 16:16
Khoramdin2-Apr-07 16:16 
AnswerRe: How to remove space in a String? Pin
Christian Graus2-Apr-07 16:19
protectorChristian Graus2-Apr-07 16:19 

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.