Do you have any tips on C # Minification?

I need to minimize some C # code in multiple Silverlight.cs and .xmal files. What are your tips on maintaining a single code base and running a β€œtool” to create abbreviated code for a project?

Are there any tools (e.g. Resharper) that will do this? If not fully, partially, or help in some way ...

EDIT: I understand that there is no need to extend C #. This exercise, which I am doing, does not make sense at first glance. (This is not homework.)

+3
c # xaml minify
source share
4 answers

What about obfuscator source code? They usually abbreviate names, etc. - and, of course, remove the empty space.

For example, here , with a demo here (although you probably want to disable lowercase encoding if possible). Please note that this is not a direct recommendation: this is only the first hit I got for C # obfuscator .

+3
source share

It's necessary? I realized that the compiled .Net assembly will be sent all over the cable, and not to the C # source code (or in any other language).

+1
source share

Here are two Lessons learned from other 10k members:

Thoughts on calling MIX 10K

MIX09 10K Smart Coding Challenge

+1
source share

Are you trying to do something to solve Silverlight 10k or something like that? That is why I am looking for this information ...

http://2009.visitmix.com/MIXtify/TenKGallery.aspx

-one
source share

All Articles