diff --git a/CryptoExchange.Net/ExtensionMethods.cs b/CryptoExchange.Net/ExtensionMethods.cs index 38a2adf..6f78e63 100644 --- a/CryptoExchange.Net/ExtensionMethods.cs +++ b/CryptoExchange.Net/ExtensionMethods.cs @@ -86,8 +86,12 @@ namespace CryptoExchange.Net } else if (serializationType == ArrayParametersSerialization.MultipleValues) { + bool firstArrayValue = true; foreach (var entry in (object[])parameter.Value) { + if (!firstArrayValue) + uriString.Append('&'); + firstArrayValue = false; uriString.Append(parameter.Key); uriString.Append("="); if (urlEncodeValues)