clojure.lang.StringSeq.count C# (CSharp) Метод

count() публичный Метод

Gets the number of items in the collection.
The Java version does not define this. Defaults to ASeq's iteration method. Seems wasteful
public count ( ) : int
Результат int
        public override int count()
        {
            return _i < _s.Length ? _s.Length - _i : 0;
        }