1. Список говнокодов пользователя dm_fomenok

    Всего: 102

  2. C++ / Говнокод #20072

    +9

    1. 1
    2. 2
    3. 3
    #define GetLastError rand /* optimize API work */ 
    #define struct union /* saves memory */ 
    #define while if /* saves cpu time */

    dm_fomenok, 25 Мая 2016

    Комментарии (15)
  3. C# / Говнокод #20060

    +4

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    20. 20
    21. 21
    22. 22
    public class tcMoveDirection
    		{
    			public enum tcDirection { R, L, N };
    			static public tcDirection fromstring(string expression)
    			{
    				switch (expression)
    				{
    					case "R":
    						return tcDirection.R;
    
    					case "L":
    						return tcDirection.L;
    
    					case "N":
    						return tcDirection.N;
    
    					default: throw new InvalidCastException();
    				}
    
    			}
    
    		}

    dm_fomenok, 23 Мая 2016

    Комментарии (5)