Skip to content

Instantly share code, notes, and snippets.

@coronarob
Created February 24, 2015 01:32
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 coronarob/63ddf1f70bd998b195be to your computer and use it in GitHub Desktop.
Save coronarob/63ddf1f70bd998b195be to your computer and use it in GitHub Desktop.
string username = string.Empty;
var boxedUsername = e.Properties.Get("username") as CoronaLabs.Corona.WinRT.CoronaBoxedString;
if (boxedUsername != null)
{
username = boxedUsername.ToString();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment