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.

23 lines
543 B
C#

namespace OPCDA.NET
{
using System;
[Serializable]
public class ItemPropertyItemID
{
public int Error;
public string newItemID;
public int PropertyID;
public override string ToString()
{
if (this.Error == 0)
{
return string.Concat(new object[] { "ID:", this.PropertyID, " newID:", this.newItemID });
}
return string.Concat(new object[] { "ID:", this.PropertyID, " Error:", this.Error.ToString() });
}
}
}