|
|
|
@ -20,6 +20,7 @@ using System;
@@ -20,6 +20,7 @@ using System;
|
|
|
|
|
using System.Collections; |
|
|
|
|
using System.Collections.Generic; |
|
|
|
|
using System.Runtime.InteropServices; |
|
|
|
|
using System.Text; |
|
|
|
|
|
|
|
|
|
namespace ICSharpCode.Decompiler.Tests.TestCases.Pretty |
|
|
|
|
{ |
|
|
|
@ -614,6 +615,18 @@ namespace ICSharpCode.Decompiler.Tests.TestCases.Pretty
@@ -614,6 +615,18 @@ namespace ICSharpCode.Decompiler.Tests.TestCases.Pretty
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private static void AppendNamePart(string part, StringBuilder name) |
|
|
|
|
{ |
|
|
|
|
foreach (char c in part) |
|
|
|
|
{ |
|
|
|
|
if (c == '\\') |
|
|
|
|
{ |
|
|
|
|
name.Append('\\'); |
|
|
|
|
} |
|
|
|
|
name.Append(c); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void NoForeachOverArray(string[] array) |
|
|
|
|
{ |
|
|
|
|
for (int i = 0; i < array.Length; i++) |
|
|
|
|