Amazon.Runtime.Internal.Util.StringUtils.Utf8ByteLength C# (CSharp) Method

Utf8ByteLength() public static method

public static Utf8ByteLength ( string value ) : long
value string
return long
        public static long Utf8ByteLength(string value)
        {
            if (value == null)
            {
                return 0;
            }
            return UTF_8.GetByteCount(value);
        }
    }