Add DebuggerDisplay attributes.

Format some code to C# 7.0.
Remove useless using directives.
This commit is contained in:
GoldenCrystal
2017-09-07 23:10:17 +02:00
parent d65f7f0a77
commit 751e84fc6d
30 changed files with 144 additions and 280 deletions
@@ -1,9 +1,5 @@
using System;
using System.Collections;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace System.Unicode
{
@@ -41,7 +37,7 @@ namespace System.Unicode
if (index < text.Length && (index += current > 0xFFFF ? 2 : 1) < text.Length)
{
current = GetUtf32(text, index);
return true;
return true;
}
else
{