User379720387 posted
myConnectedClients dictionary has a series of IP:PORT, and myClient objects
At one point I need to set keyvalHasExistingManual
public class myClient
{
public IClient keyvalClient { get; set; }
public string keyvalLocType { get; set; }
public bool keyvalHasExistingManual { get; set; }
}
private Dictionary<string, myClient> myConnectedClients = new Dictionary<string, myClient>();
How does one update just keyvalHasExistingManual?