Babel.Core.STR.size C# (CSharp) Méthode

size() public static méthode

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