Babel.Core.STR.size C# (CSharp) 메소드

size() 공개 정적인 메소드

public static size ( string self ) : int
self string
리턴 int
        public static int size(string self)
        {
            if (self == null) {
                return 0;
            }
            else {
                return self.Length;
            }
        }