Search Results

3
votes
2answers
743 views

When would you use the “protected internal” access modifier?

As you may already know, the .NET Framework's protected internal access modifier works in a strange way: …
7
votes
3answers
846 views

Can strong naming an assembly be used to verify the assembly author?

After reading the proper article in MSDN and related stackoverflow.com questions …
1
vote
2answers
73 views

Is loading a dependency assembly from the internet a good practice?

I know there are several ways to deploy a .net windows client application: There's Windows Installer …
1
vote
2answers
77 views

Would you use EnterpriseServices in a new enterprise development?

As you may already know, managed code (.NET apps) can make use of COM+ through EnterpriseServices, making issues l …
36
votes

Favorite Visual Studio keyboard shortcuts

For me, it's nothing about auto completing code, matching parenthesis or showing some fancy tool panel. Instead, it's just about letting me see the code. With all the panels surro …
0
votes

Is it possible to compile .NET IL code to machine code?

I think you should not: That's the task of the JIT compiler. However, you could use ClickOnce or Windows Installer to deploy it so that the missing framework isn't such a big problem: you …
0
votes

Website version 2, keep in PHP or move to .Net?

And why are you limiting yourself to these choices? Why not try Ruby on Rails? I has a built-in ORM! …
0
votes

Deploying applicaion in different locale than devlopment locale

The best solution is to specify the locale in the app.config, overriding the machine's. …