Skip to content

Instantly share code, notes, and snippets.

@CartBlanche
Created October 19, 2011 21:52
Show Gist options
  • Save CartBlanche/1299799 to your computer and use it in GitHub Desktop.
Save CartBlanche/1299799 to your computer and use it in GitHub Desktop.
Intents in MonoDroid.Dialogs.
Intent intent = new Intent(Context, Fixtures); // Get Error CS0119: Expression denotes a `type', where a `variable', `value' or `method group' was expected (CS0119)
intent.PutExtra("ShowAll", showAll.Value);
intent.AddFlags(ActivityFlags.NewTask);
StartActivity(intent);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment