How to get the value of non public member of the OPCGroup using OPCDA.NET in C#
private void DataChangeHandler(object sender, DataChangeEventArgs e)
{
try
You shouldn't try to use non-public members. If the author of the code has hidden it, you should assume that:
You can use reflection to access non-public members (assuming appropriate permissions at execution time) but I would highly discourage you from doing so if possible.