I realize this is a rather odd request, but I was wondering if anyone was aware of some minification/obfuscation tools that work on C# source code (not a compiled assembly). I am trying to reduce the character count of an already written application to meet a character limit and I can't seem to find any tools that will help me achieve this task.

Main features I am interested in:

  • Strip Whitespace
  • Shorten Variable Names

It doesn't have to be a full on obfuscator, just something that will reduce the character count of a block of code quickly and conveniently.

This is not intended to have any practical or real world application, it's for a competition.

link|improve this question

1  
Why on earth would you want to do that? – svinto Sep 7 '09 at 22:22
why do you want to do this? – Nathan W Sep 7 '09 at 22:22
My I ask why your code has a character limit? – Richard Nienaber Sep 7 '09 at 22:22
I'm trying to meet a chracter limit that's all. Nothing to do with security or anything. – Nathan Taylor Sep 7 '09 at 22:22
but why is there a character limit, is it for a comp? – Nathan W Sep 7 '09 at 22:23
show 5 more comments
feedback

1 Answer

up vote 2 down vote accepted

I am not aware of any such tool, but it would not be too hard to do some variable renaming using the built in refactor tools in Visual Studio.

For the whitespace, a regex find-replace, to replace any multiple spaces (:Wh+ in VS replace) with a single space.

link|improve this answer
Fair enough. That works for me. – Nathan Taylor Sep 7 '09 at 22:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.