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

.NET (Core and Framework)

 
General.NET (Compact) Framework Pin
gordingin21-Jan-04 12:00
gordingin21-Jan-04 12:00 
GeneralRe: .NET (Compact) Framework Pin
Colin Angus Mackay21-Jan-04 14:04
Colin Angus Mackay21-Jan-04 14:04 
GeneralCapturing the Screen Resolution Pin
bneacetp21-Jan-04 10:48
bneacetp21-Jan-04 10:48 
QuestionQuery Analyzer Control ? Pin
house_anno20-Jan-04 22:41
house_anno20-Jan-04 22:41 
AnswerRe: Query Analyzer Control ? Pin
Mazdak20-Jan-04 23:25
Mazdak20-Jan-04 23:25 
GeneralRe: Query Analyzer Control ? Pin
house_anno20-Jan-04 23:40
house_anno20-Jan-04 23:40 
GeneralRe: Query Analyzer Control ? Pin
Mazdak21-Jan-04 1:13
Mazdak21-Jan-04 1:13 
GeneralRe: Query Analyzer Control ? Pin
house_anno21-Jan-04 1:27
house_anno21-Jan-04 1:27 
GeneralBest Practices for Modular Approach in Microsft.NET and Microsoft Commerce Server 2002 Pin
kandasamyg20-Jan-04 17:26
kandasamyg20-Jan-04 17:26 
GeneralArrayList Question Pin
bneacetp20-Jan-04 6:52
bneacetp20-Jan-04 6:52 
GeneralRe: ArrayList Question Pin
bneacetp20-Jan-04 7:01
bneacetp20-Jan-04 7:01 
GeneralRe: ArrayList Question Pin
Mike Dimmick22-Jan-04 4:48
Mike Dimmick22-Jan-04 4:48 
GeneralRe: ArrayList Question Pin
bneacetp22-Jan-04 13:56
bneacetp22-Jan-04 13:56 
GeneralLow Pause-Time Garbage Collector Pin
Andrew Shapira19-Jan-04 20:14
Andrew Shapira19-Jan-04 20:14 
GeneralQuestion about installation and version of .NET Framework Pin
Korby19-Jan-04 19:54
Korby19-Jan-04 19:54 
GeneralRemove Lock on (assembly) File Pin
Paul Farry19-Jan-04 18:52
professionalPaul Farry19-Jan-04 18:52 
GeneralRe: Remove Lock on (assembly) File Pin
clon20-Jan-04 1:00
clon20-Jan-04 1:00 
GeneralIEnumUnknown Implementation Pin
shawnzhou19-Jan-04 15:08
shawnzhou19-Jan-04 15:08 
GeneralChanging Font Style of TabPage text Pin
nvmoss19-Jan-04 10:01
nvmoss19-Jan-04 10:01 
QuestionCan we compile IL to x86 assembly? Pin
Judah Gabriel Himango19-Jan-04 5:34
sponsorJudah Gabriel Himango19-Jan-04 5:34 
AnswerRe: Can we compile IL to x86 assembly? Pin
Daniel Turini19-Jan-04 6:14
Daniel Turini19-Jan-04 6:14 
GeneralRe: Can we compile IL to x86 assembly? Pin
Judah Gabriel Himango19-Jan-04 7:35
sponsorJudah Gabriel Himango19-Jan-04 7:35 
GeneralRe: Can we compile IL to x86 assembly? Pin
Daniel Turini19-Jan-04 7:41
Daniel Turini19-Jan-04 7:41 
GeneralApp domain vs. process Pin
Hesham Amin17-Jan-04 4:28
Hesham Amin17-Jan-04 4:28 
GeneralRe: App domain vs. process Pin
Mike Dimmick19-Jan-04 6:10
Mike Dimmick19-Jan-04 6:10 
An application domain is a managed application boundary in .NET. You can only cause data to cross domain boundaries using some communication mechanism - you cannot directly call into another application domain (IIRC).

Many application domains can be hosted within a single process. They share the same user-mode address space, which reduces some of the load for the operating system. Different domains in the same process can have their own configurations. ASP.NET takes advantage of this, hosting every site within its own AppDomain, all within the same worker process (aspnet_wp.exe on Windows 2000 and Windows XP; w3wp.exe on Windows Server 2003).

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.