You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
341 B
C#

namespace OPCDA.NET
{
using System;
using System.Windows.Forms;
public class tlNodeInfo
{
public ListViewItem[] itemNames;
public string path;
public tlNodeInfo(string pName, int len)
{
this.path = pName;
this.itemNames = new ListViewItem[len];
}
}
}