/// <summary>
    ///   <para>Maximum number of comments to display.</para>
    /// </summary>
    /// <param name="widget">Widget to call method on.</param>
    /// <param name="limit">Maximum number of comments.</param>
    /// <returns>Reference to provided <paramref name="widget"/>.</returns>
    /// <exception cref="ArgumentNullException">If <paramref name="widget"/> is a <c>null</c> reference.</exception>
    /// <seealso cref="IVkontakteCommentsWidget.Limit(byte)"/>
    public static IVkontakteCommentsWidget Limit(this IVkontakteCommentsWidget widget, VkontakteCommentsLimit limit)
    {
      Assertion.NotNull(widget);

      return widget.Limit((byte)limit);
    }
        /// <summary>
        ///   <para>Maximum number of comments to display.</para>
        /// </summary>
        /// <param name="widget">Widget to call method on.</param>
        /// <param name="limit">Maximum number of comments.</param>
        /// <returns>Reference to provided <paramref name="widget"/>.</returns>
        /// <exception cref="ArgumentNullException">If <paramref name="widget"/> is a <c>null</c> reference.</exception>
        /// <seealso cref="IVkontakteCommentsWidget.Limit(byte)"/>
        public static IVkontakteCommentsWidget Limit(this IVkontakteCommentsWidget widget, VkontakteCommentsLimit limit)
        {
            Assertion.NotNull(widget);

            return(widget.Limit((byte)limit));
        }