BraintreeEncryption.Library.BouncyCastle.Util.Arrays.ToString C# (CSharp) Method

ToString() public static method

public static ToString ( object a ) : string
a object
return string
        public static string ToString(
			object[] a)
        {
            StringBuilder sb = new StringBuilder('[');
            if (a.Length > 0)
            {
                sb.Append(a[0]);
                for (int index = 1; index < a.Length; ++index)
                {
                    sb.Append(", ").Append(a[index]);
                }
            }
            sb.Append(']');
            return sb.ToString();
        }