I am trying to translate the following into C# with Dot 42
@Override public boolean onOptionsItemSelected(MenuItem item)
{
switch (item.getItemId())
{
case android.R.id.home:
return(true);
case R.id.about:
return(true);
case R.id.help:
return(true);
}
return(super.onOptionsItemSelected(item));
}
My main problem right now is the android.id.home The Intellisense does not show a Home member of Android.R.Id What am I missing here? BTW if you would like to translate the full block into C#, thanks, but I'm pretty sure the rest of it will not pose much a problem.