I want to call some calendar app into my aplication, does anybody knows how to do it? I have this code on Java that i have trasnlated to c# but doenst work at all.
DateTime date = DateTime.Now;
Intent intentCalendar = new Intent(Intent.ActionEdit);
intentCalendar.SetType("vnd.android.cursor.item/event");
intentCalendar.PutExtra("beginTime", date.Millisecond);
intentCalendar.PutExtra("allDay", true);
intentCalendar.PutExtra("rrule", "FREQ=YEARLY");
intentCalendar.PutExtra("endTime", date.Millisecond + 60*60*1000);
intentCalendar.PutExtra("title", "Create an Event");
StartActivity(intent);
instead of
?