Hardware/HexStringArray.cs
changeset 277 5c80f37c0330
parent 272 037a2d66082f
child 344 3145aadca3d2
     1.1 --- a/Hardware/HexStringArray.cs	Sat Apr 30 21:01:54 2011 +0000
     1.2 +++ b/Hardware/HexStringArray.cs	Sun May 01 13:37:15 2011 +0000
     1.3 @@ -16,7 +16,7 @@
     1.4  
     1.5    The Initial Developer of the Original Code is 
     1.6    Michael Möller <m.moeller@gmx.ch>.
     1.7 -  Portions created by the Initial Developer are Copyright (C) 2009-2010
     1.8 +  Portions created by the Initial Developer are Copyright (C) 2009-2011
     1.9    the Initial Developer. All Rights Reserved.
    1.10  
    1.11    Contributor(s):
    1.12 @@ -46,7 +46,7 @@
    1.13          StringSplitOptions.RemoveEmptyEntries);
    1.14  
    1.15        foreach (string line in lines) {
    1.16 -        string[] array = line.Split(new[] { ' ' }, 
    1.17 +        string[] array = line.Split(new[] { ' ', '\t' }, 
    1.18            StringSplitOptions.RemoveEmptyEntries);
    1.19          if (array.Length == 0)
    1.20            continue;