We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24729e3 commit 6c0a735Copy full SHA for 6c0a735
Contactables/ContactablesLoaderCallbacks.cs
@@ -76,7 +76,7 @@ public Loader OnCreateLoader (int loaderIndex, Bundle args)
76
77
public void OnLoadFinished (Loader loader, Java.Lang.Object data)
78
{
79
- ICursor cursor = (ICursor) data;
+ var cursor = data.JavaCast<ICursor> ();
80
81
TextView tv = ((Activity) mContext).FindViewById <TextView> (Resource.Id.sample_output);
82
0 commit comments