Hi,
In C#, for User Profile Properties of type Person, Email and integer, how do we clear values for this?
For example:
case "Email": userProp.Value = value;
When value is string.Empty, an exception is thrown:
Invalid String Value: Input must match string data type
What value do I need to use so that I can clear the value in property of type "Email"?
Thanks!