public static MyAlertDialogFragment NewInstance(int title) {
     MyAlertDialogFragment frag = new MyAlertDialogFragment();
     Bundle args = new Bundle();
     args.PutInt("title", title);
     frag.SetArguments(args);
     return frag;
 }
            public static MyAlertDialogFragment NewInstance(int title)
            {
                MyAlertDialogFragment frag = new MyAlertDialogFragment();
                Bundle args = new Bundle();

                args.PutInt("title", title);
                frag.SetArguments(args);
                return(frag);
            }