Amazon.Runtime.Internal.Util.StringUtils.Utf8ByteLength C# (CSharp) Метод

Utf8ByteLength() публичный статический Метод

public static Utf8ByteLength ( string value ) : long
value string
Результат long
        public static long Utf8ByteLength(string value)
        {
            if (value == null)
            {
                return 0;
            }
            return UTF_8.GetByteCount(value);
        }
    }