test

来源:互联网 发布:电脑没有网络怎么办 编辑:程序博客网 时间:2024/05/29 04:13
  #region EnableCountryInComments  /// <summary>  /// Gets or sets a value indicating if dispay of the country of commenter is enabled.  /// </summary>  /// <value><b>true</b> if commenter country display is enabled, otherwise returns <b>false</b>.</value>  public bool EnableCountryInComments  {   get   {    // Mono currently does not return any country names, as such we're unable to use the countries    // on the comments.    if (!Utils.IsMono)     return enableCountryInComments;    else     return false;   }   set   {    enableCountryInComments = value;   }  }  #endregion