IsDeveloperBuildInternal() private method

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