Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

#region descriptions compiled into .exe in .net?

Are #region/#endregion directive "descriptions" compiled into the .EXE in .NET? I understand that comments are NOT, but I often chunk groups of code within a region and give it a useful description.

I want to make sure these descriptions are not visible in my compiled code. (I am not looking for obfuscation information. Thanks, though.)

like image 887
neoikon Avatar asked Dec 31 '12 15:12

neoikon


1 Answers

No, they aren't. They are Preprocessor expressions, which won't end up in code.

like image 154
Femaref Avatar answered Oct 08 '22 12:10

Femaref