clojure.lang.StringSeq.create C# (CSharp) 메소드

create() 공개 정적인 메소드

Create a StringSeq from a String.
public static create ( string s ) : StringSeq
s string
리턴 StringSeq
        public static StringSeq create(string s)
        {
            return s.Length == 0
                ? null
                : new StringSeq(null, s, 0);
        }