Click here to Skip to main content
15,913,836 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralDeploying windows applications Pin
Britnt725-Oct-04 10:53
Britnt725-Oct-04 10:53 
GeneralRe: Deploying windows applications Pin
Steve Maier25-Oct-04 11:12
professionalSteve Maier25-Oct-04 11:12 
GeneralRe: Deploying windows applications Pin
Britnt726-Oct-04 2:02
Britnt726-Oct-04 2:02 
GeneralRe: Deploying windows applications Pin
Steve Maier26-Oct-04 5:31
professionalSteve Maier26-Oct-04 5:31 
GeneralRe: Deploying windows applications Pin
Britnt726-Oct-04 5:37
Britnt726-Oct-04 5:37 
GeneralRe: Deploying windows applications Pin
Trankil26-Oct-04 1:15
Trankil26-Oct-04 1:15 
GeneralRe: Deploying windows applications Pin
Britnt726-Oct-04 2:07
Britnt726-Oct-04 2:07 
GeneralRe: Deploying windows applications Pin
Steve Maier26-Oct-04 5:35
professionalSteve Maier26-Oct-04 5:35 
GeneralRe: Deploying windows applications Pin
Britnt726-Oct-04 5:39
Britnt726-Oct-04 5:39 
GeneralRe: Deploying windows applications Pin
Steve Maier26-Oct-04 7:27
professionalSteve Maier26-Oct-04 7:27 
GeneralRe: Deploying windows applications Pin
Adnan Siddiqi31-Oct-04 8:43
Adnan Siddiqi31-Oct-04 8:43 
QuestionListView move Up / Down using Index ?? Pin
luckyShek25-Oct-04 8:15
luckyShek25-Oct-04 8:15 
AnswerRe: ListView move Up / Down using Index ?? Pin
Fade (Amit BS)25-Oct-04 17:31
Fade (Amit BS)25-Oct-04 17:31 
GeneralRe: ListView move Up / Down using Index ?? Pin
Anonymous27-Oct-04 7:23
Anonymous27-Oct-04 7:23 
GeneralNT User Login propagate on Remoting Pin
amatyasik25-Oct-04 3:05
amatyasik25-Oct-04 3:05 
GeneralRe: NT User Login propagate on Remoting Pin
Alex Korchemniy25-Oct-04 11:39
Alex Korchemniy25-Oct-04 11:39 
GeneralRe: NT User Login propagate on Remoting Pin
amatyasik25-Oct-04 21:09
amatyasik25-Oct-04 21:09 
GeneralDistributing Dlls written in .Net to VB6 Pin
Fade (Amit BS)24-Oct-04 19:26
Fade (Amit BS)24-Oct-04 19:26 
GeneralRe: Distributing Dlls written in .Net to VB6 Pin
Alex Korchemniy25-Oct-04 11:33
Alex Korchemniy25-Oct-04 11:33 
GeneralRe: Distributing Dlls written in .Net to VB6 Pin
Fade (Amit BS)25-Oct-04 19:19
Fade (Amit BS)25-Oct-04 19:19 
GeneralRe: Distributing Dlls written in .Net to VB6 Pin
Trankil26-Oct-04 1:19
Trankil26-Oct-04 1:19 
GeneralApplets Pin
Srikanth I.24-Oct-04 10:29
Srikanth I.24-Oct-04 10:29 
GeneralRe: Applets Pin
Steven Campbell24-Oct-04 10:43
Steven Campbell24-Oct-04 10:43 
QuestionTcpClient create a memory leak ?!? Pin
Alon Ronen23-Oct-04 5:57
Alon Ronen23-Oct-04 5:57 
AnswerRe: TcpClient create a memory leak ?!? Pin
Fade (Amit BS)25-Oct-04 19:34
Fade (Amit BS)25-Oct-04 19:34 
i wouldn't jump the gun and say there is a memory leak
a good thing to know about the grabade collector in .net is that it collects garbage when it wants to Smile | :)

an easy way to see this for yourself is to sequencially create and destroy let's say 100,000 objects.

open the task manager to watch the memory status as the code runs for whatever time it takes him (i would even put it in a never ending loop just for the sake of the example)

the loop should be something like

{
CreateObject();
DestroyObject();
}

you will notice how the memory starts to fill up, and then just when you think the system is about to die, you'll see how in a second it all comes back to normal - that's the garbage collector waking up and doing it's job Smile | :)

Let me know if it is a leak or just the garbage collector so i'll know whether to use the tcpClient.

Fade (Amit BS)

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.