IsDeveloperBuildInternal() private méthode

private IsDeveloperBuildInternal ( ) : bool
Résultat bool
Exemple #1
0
 public static bool IsDeveloperBuild()
 {
     if (Unsupported.IsDeveloperBuildInternal())
     {
         return(!Unsupported.s_FakeNonDeveloperBuild);
     }
     return(false);
 }
Exemple #2
0
 public static bool IsDeveloperBuild()
 {
     return(Unsupported.IsDeveloperBuildInternal() && !Unsupported.s_FakeNonDeveloperBuild);
 }