The following line does not compile:
var mapFragment = FragmentManager.FindFragmentById<MapFragment>(Resource.Id.map);
Error CS0120 An object reference is required for the non-static field, method, or property 'FragmentManager.FindFragmentById(int)'
My axml is the following:
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/map"
android:layout_width="200dp"
android:layout_height="200dp"
class="com.google.android.gms.maps.MapFragment" />
I am referencing the following documentation:
Any suggestions?