Babel.Core.STR.size C# (CSharp) Method

size() public static method

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