1. C# / Говнокод #19409

    +1

    1. 1
    bool isNoGoodCommentText = String.IsNullOrEmpty(this.txbxCommentCtrl.Text) || String.IsNullOrWhiteSpace(this.txbxCommentCtrl.Text);

    И действительно, is not good

    Запостил: pipjaka, 05 Февраля 2016

    Комментарии (4) RSS

    • Автор подумал, что IsNullOrWhiteSpace будет требовать хотя бы один пробел, и не решился его юзать. А доку почитать было лень...
      Ответить
    • bool isNoGoodCommentText = this.txbxCommentCtrl.Text == null || this.txbxCommentCtrl.Text == "" || this.txbxCommentCtrl.Text.Replace(" ", "") == "";
      Ответить
      • this.txbxCommentCtrl.Text == null || string.IsNullOrEmpty(this.txbxCommentCtrl.Text) || ...
        Ответить
    • this.txbxCommentCtrl.Text = "\0";

      Ня?
      Ответить

    Добавить комментарий