Thursday, 15 January 2015

Can a .NET ApplicationDomain contain more than one process? -



Can a .NET ApplicationDomain contain more than one process? -

in .net, there way single static class fellow member can accessed more 1 process? i've read static members scoped applicationdomain , processes can contain multiple applicationdomains, i've been unable confirm applicationdomain absolutely confined single process.

i've understood/believed processes highly segregated operating system. also, in simple testing i've done (using process.create()) appears static members in different processes exclusively independent. (extremely helpful) answer received on codereview.se makes me wonder whether bleed-over possible.

update: clear, have no desire access static fellow member multiple processes. i'm purely trying determine if need code against possibility. please see linked question if interested in background question.

static variables belong single appdomain. processes never share static variables. not need code against it.

by default, processes isolated. have actively work share memory between 2 processes. clr makes no effort communicate other processes.

.net process static-members

No comments:

Post a Comment