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

    Всего: 3

  2. C# / Говнокод #2580

    +109.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
    //Dictionary used to check if eventValues are unique
    Dictionary<string, string> uniqueEventValues = new Dictionary<string, string>();
    
    //... заполняем коллекцию
    
    try {
        uniqueEventValues.Add(eventValue, "X");
    }
    catch (Exception ex) {
        if (ex.Message.Equals("An item with the same key has already been added.")) {
            msgAddEventParams.Text = "EventValues must be unique. " + eventValue + " is duplicate.";
            msgAddEventParams.Visible = true;
            return;
        }
    }

    мы не ищем легких путей!

    Sharp, 09 Февраля 2010

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

    +135.2

    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
    23. 23
    24. 24
    25. 25
    26. 26
    27. 27
    28. 28
    29. 29
    30. 30
    31. 31
    protected void DuplicateFilterNameValidator(object source, ServerValidateEventArgs args)
        {
            string _filterName = FilterName.Text;
            SqlCommand command = new SqlCommand();
            SqlDataReader filterNameReader = null;
            try
            {
                SqlConnection connection = new SqlConnection(strConn);
                connection.Open();
                command.CommandText = "EventNotificationFilterSelectByName";
                command.Connection = connection;
                command.CommandType = CommandType.StoredProcedure;
                command.Parameters.Add(new SqlParameter("@filterName", _filterName));
                filterNameReader = command.ExecuteReader();
    
                if (filterNameReader.HasRows)
                {
                    args.IsValid = false;
                }
    
                if ((connection != null) & (connection.State == ConnectionState.Open))
                {
                    connection.Close();
                }
            }
            catch (Exception e)
            {
                _log.Error(e);
            }
    
        }

    omg...

    Sharp, 05 Февраля 2010

    Комментарии (10)
  4. C# / Говнокод #2550

    +134.7

    1. 1
    2. 2
    3. 3
    4. 4
    5. 5
    6. 6
    7. 7
    8. 8
    9. 9
    private bool localGlobal;
    
    //...
    
    string filterActionOrder = FilterActionOrder.Text;
    //For sorting purpose, substract .5 to the ActionOrder to ensure
    //the order specified takes precedence
    double filterActionOrderTemp = Double.Parse(filterActionOrder) - .5;
    filterActionOrder = filterActionOrderTemp.ToString();

    без комментариев :)

    Sharp, 05 Февраля 2010

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