Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created February 9, 2024 12:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bjoerntx/81d731c6d320efa4b851693680a287e8 to your computer and use it in GitHub Desktop.
Save bjoerntx/81d731c6d320efa4b851693680a287e8 to your computer and use it in GitHub Desktop.
UserInfo userInfo;
// deserialize the JSON string to a UserInfo object if data is available
if (textControl1.SubTextParts.GetItem("part1").Data != null)
{
userInfo = JsonSerializer.Deserialize<UserInfo>(textControl1.SubTextParts.GetItem("part1").Data);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment