/// <summary> /// 添加组 /// </summary> public bool AddOpcGroup(ref string errMsg) { try { return(opcClient.AddOpcGroup(groupName, ref errMsg)); } catch (Exception ex) { errMsg = ex.Message; return(false); } }