views:

114

answers:

3

Just wanted to share a piece of code with you guys that look odd but it perfectly valid in c#.

class _________
{

    static void Main(string[] args) {
        int _ = 1;
        int __ = 2;
        int ___ = 3;
        int ____ = 4;
        int _____ = 5;
        int ______ = 6;


        int[] _______ = new int[]{
            _,__,___,____,_____,______
        };
        _______.ToList().ForEach(________ => Console.WriteLine(________));

    }
}

what do think about that.

+1  A: 

Code is meant to be easy to understand.

I think you should add some comments!!!

Would fail a peer review!!!

Datoon
its not that its easy to understand it just that is possiable. we always need variable e.g in a inline LINQ expression. i normally use o,i, n etc in `mycol.Where( o=> o.age> 13)` it can be used over there
affan
A: 

Just because it's valid doesn't mean you should do it.

Wallace Breza
+4  A: 

It's useful in C for calculating pi.

#define _ -F<00||--F-OO--;
int F=00,OO=00;main(){F_OO();printf("%1.3f\n",4.*-F/OO/OO);}F_OO()
{
            _-_-_-_
       _-_-_-_-_-_-_-_-_
    _-_-_-_-_-_-_-_-_-_-_-_
  _-_-_-_-_-_-_-_-_-_-_-_-_-_
 _-_-_-_-_-_-_-_-_-_-_-_-_-_-_
 _-_-_-_-_-_-_-_-_-_-_-_-_-_-_
_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
 _-_-_-_-_-_-_-_-_-_-_-_-_-_-_
 _-_-_-_-_-_-_-_-_-_-_-_-_-_-_
  _-_-_-_-_-_-_-_-_-_-_-_-_-_
    _-_-_-_-_-_-_-_-_-_-_-_
        _-_-_-_-_-_-_-_
            _-_-_-_
}
dan04
+1 for trying to point him to the obfuscated C contest, about the only place code like that belongs.
Joel Rondeau