Skip to content

Commit b967f93

Browse files
committed
fix bugs on loadcsv
1 parent 5c4481b commit b967f93

File tree

5 files changed

+1
-1
lines changed

5 files changed

+1
-1
lines changed

SCADA/Example/TagConfig.exe

-512 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.

SCADA/Program/TagConfig/TagConfig/Form1.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ private void LoadFromCsv()
424424
{
425425
using (var mysr = new StreamReader(stream))
426426
{
427-
string strline = mysr.ReadLine();
427+
string strline = "";
428428
while ((strline = mysr.ReadLine()) != null)
429429
{
430430
string[] aryline = strline.Split('\t');

0 commit comments

Comments
 (0)