fixed decompiler errors - project compiles
This commit is contained in:
@@ -141,7 +141,7 @@ namespace Rei.Fs
|
||||
if (str.Contains("%u") || str.Contains("%U"))
|
||||
throw new ArgumentException("cannot use %u encoding uri");
|
||||
List<byte> byteList = new List<byte>();
|
||||
int index1;
|
||||
int index1=0;
|
||||
while (index1 < str.Length)
|
||||
{
|
||||
if ((int) str[index1] != 37)
|
||||
@@ -382,10 +382,9 @@ namespace Rei.Fs
|
||||
public static string CreateFormUrlencodedString(Dictionary<string, string> values)
|
||||
{
|
||||
List<string> stringList = new List<string>();
|
||||
Dictionary<string, string>.KeyCollection.Enumerator enumerator;
|
||||
Dictionary<string, string>.KeyCollection.Enumerator enumerator = values.Keys.GetEnumerator();
|
||||
try
|
||||
{
|
||||
enumerator = values.Keys.GetEnumerator();
|
||||
while (enumerator.MoveNext())
|
||||
{
|
||||
string current = enumerator.Current;
|
||||
|
||||
Reference in New Issue
Block a user