Thread: C# unsafe mode
View Single Post
  #3  
Old 02-21-2007, 06:57 AM
wellilein wellilein is online now
Registered User
 
Join Date: 11-30-2005
Posts: 53
C# unsafe mode

This is probably a problem of your developer.

Developers typically build Debug configurations. So when he introduced unsafe code, he switched on the [x] Allow unsafe code flag in the project properties.

What he probably didn't do is to turn that flag on for release builds.

Open MS VS, go to Project Properties / Build and have a look at the flags for different releases.

That helped me.
Reply With Quote