Sunday 26 August 2018

c# - Is sa1200 All using directives must be placed inside the namespace (StyleCop) purely cosmetic?








sa1200 All using directives must be placed inside the namespace (StyleCop)



Is this just for code readibility or is there any actual advantage to doing so?
Does it help the GC somehow?


Answer




It definitely won't help with GC.



Here's the discussion about two styles:



http://blogs.msdn.com/abhinaba/archive/2006/08/21/709051.aspx



http://blogs.msdn.com/abhinaba/archive/2008/07/08/do-namespace-using-directives-affect-assembly-loading.aspx


No comments:

Post a Comment

php - file_get_contents shows unexpected output while reading a file

I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print &q...