public static void DeleteGroup(String groupName)
 {
     if (_offsets != null)
     {
         _offsets.RemoveAll(offset => offset.Datagroup == groupName);
     }
     FSUIPCConnection.DeleteGroup(groupName);
 }