fixed decompiler errors - project compiles

This commit is contained in:
2017-10-06 18:20:35 +02:00
parent 2d8b6914b8
commit 9cefa0e9dd
40 changed files with 420 additions and 411 deletions

View File

@@ -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;