Skip to content

Instantly share code, notes, and snippets.

@mgroves
Created November 4, 2010 19:21
Show Gist options
  • Save mgroves/663015 to your computer and use it in GitHub Desktop.
Save mgroves/663015 to your computer and use it in GitHub Desktop.
private void addPortfolioButton_Click(object sender, EventArgs e)
{
var intent = new Intent();
intent.SetClassName(this, AddPortfolioActivity.ClassName);
StartActivityForResult(intent, 0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment