public void InsertFragment(int index, SupportFragment fragment, string name)
 {
     try
     {
         Fragments.Insert(index, fragment);
         FragmentNames.Insert(index, name);
     }
     catch (Exception exception)
     {
         Crashes.TrackError(exception);
     }
 }
Beispiel #2
0
 public void InsertFragment(int index, SupportFragment fragment, string name)
 {
     try
     {
         Fragments.Insert(index, fragment);
         FragmentNames.Insert(index, name);
     }
     catch (Exception e)
     {
         Console.WriteLine(e);
     }
 }
Beispiel #3
0
 public void InsertFragment(int index, SupportFragment fragment, string name)
 {
     try
     {
         Fragments.Insert(index, fragment);
         FragmentNames.Insert(index, name);
     }
     catch (Exception exception)
     {
         Methods.DisplayReportResultTrack(exception);
     }
 }