Created
October 19, 2011 21:52
-
-
Save CartBlanche/1299799 to your computer and use it in GitHub Desktop.
Intents in MonoDroid.Dialogs.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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