Click here to Skip to main content
15,887,135 members
Home / Discussions / C#
   

C#

 
Question[Solved] UdpClient callback question [modified] Pin
AtomTech15-Aug-10 4:59
AtomTech15-Aug-10 4:59 
AnswerRe: UdpClient callback question Pin
Gary R. Wheeler15-Aug-10 5:22
Gary R. Wheeler15-Aug-10 5:22 
AnswerRe: [Solved] UdpClient callback question Pin
Luc Pattyn15-Aug-10 7:08
sitebuilderLuc Pattyn15-Aug-10 7:08 
GeneralRe: [Solved] UdpClient callback question Pin
Dan Mos15-Aug-10 7:19
Dan Mos15-Aug-10 7:19 
GeneralRe: [Solved] UdpClient callback question Pin
Luc Pattyn15-Aug-10 7:40
sitebuilderLuc Pattyn15-Aug-10 7:40 
QuestionProcess and memory Pin
keloth8715-Aug-10 4:12
keloth8715-Aug-10 4:12 
AnswerRe: Process and memory Pin
Gary R. Wheeler15-Aug-10 5:29
Gary R. Wheeler15-Aug-10 5:29 
AnswerRe: Process and memory Pin
Luc Pattyn15-Aug-10 7:16
sitebuilderLuc Pattyn15-Aug-10 7:16 
There may be two parts to your question:

1. the amount of logical memory (the virtual memory address space) you can get, that is 2GB (sometimes 3GB) on Win32 (i.e. 50 to 75% of the theoretical 2^32). and a lot more on Win64 (not sure, could be up to 4000 times as much). That is individual to each process.

2. the amount of physical memory (how much real memory your app is allowed to use) your process is actually getting; this depends on other processes are running and doing. The sum over all processes cannot exceeed the amount of physical memory; all virtual excess will be swapped to disk (and may cause significant delays).

So if you have two or more processes aiming for lots of memory, and your system is Win32 with 3GB of RAM, each process is likely to get no more than 1GB of physical memory. By minimizing one's main form, the other may get some more.

ADDED
Here[^] are some more facts for different Windows editions.
/ADDED

Smile | :)
Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles] Nil Volentibus Arduum
Please use <PRE> tags for code snippets, they preserve indentation, and improve readability.


QuestionReading data from HTTP Pin
Wamuti15-Aug-10 3:48
Wamuti15-Aug-10 3:48 
AnswerRe: Reading data from HTTP Pin
Nicholas Butler15-Aug-10 4:14
sitebuilderNicholas Butler15-Aug-10 4:14 
AnswerRe: Reading data from HTTP Pin
Not Active15-Aug-10 4:15
mentorNot Active15-Aug-10 4:15 
QuestionHow to customise the behaviour of a control when it is selected Pin
Dave Midgley15-Aug-10 2:54
Dave Midgley15-Aug-10 2:54 
QuestionLinq - Join Pin
treuveni15-Aug-10 2:50
treuveni15-Aug-10 2:50 
AnswerRe: Linq - Join Pin
Dan Mos15-Aug-10 3:30
Dan Mos15-Aug-10 3:30 
GeneralRe: Linq - Join Pin
treuveni15-Aug-10 4:17
treuveni15-Aug-10 4:17 
GeneralRe: Linq - Join Pin
Dan Mos15-Aug-10 4:30
Dan Mos15-Aug-10 4:30 
GeneralRe: Linq - Join Pin
treuveni18-Aug-10 5:52
treuveni18-Aug-10 5:52 
QuestionRegular Expressions [modified] Pin
moein.serpico14-Aug-10 21:39
moein.serpico14-Aug-10 21:39 
AnswerRe: Regular Expressions Pin
Luc Pattyn14-Aug-10 22:26
sitebuilderLuc Pattyn14-Aug-10 22:26 
AnswerRe: Regular Expressions Pin
PIEBALDconsult15-Aug-10 8:14
mvePIEBALDconsult15-Aug-10 8:14 
QuestionDirect access to the webCam of the machine on .net framework Pin
Yanshof14-Aug-10 20:32
Yanshof14-Aug-10 20:32 
AnswerRe: Direct access to the webCam of the machine on .net framework Pin
JF201514-Aug-10 23:08
JF201514-Aug-10 23:08 
QuestionGenerics question Pin
Pete Burkindine14-Aug-10 12:31
Pete Burkindine14-Aug-10 12:31 
GeneralRe: Generics question Pin
harold aptroot14-Aug-10 12:47
harold aptroot14-Aug-10 12:47 
GeneralRe: Generics question Pin
Pete Burkindine14-Aug-10 12:55
Pete Burkindine14-Aug-10 12:55 

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.