I need to convert a boolean value to a Guid using C#.
I get the below error message:
Cannot implicitly convert type 'bool' to 'System.Guid'
My code that caulse the error:
servicesupportrep.Value = chkShowServiceSupportRep.Checked;
Open in new window
Please help