NFluent.Extensibility.MessageBlock.WithEnumerableCount C# (CSharp) Method

WithEnumerableCount() public method

Adds a description of the number of items (only relevant if the object is an enumerable).
public WithEnumerableCount ( long itemsCount ) : MessageBlock
itemsCount long /// The number of items of the enumerable instance. ///
return MessageBlock
        public MessageBlock WithEnumerableCount(long itemsCount)
        {
            this.value.WithEnumerableCount(itemsCount);
            return this;
        }