GetTotalRate() public method

public GetTotalRate ( ) : double
return double
Exemplo n.º 1
0
 public static double GetTotalRate()
 {
     if (CurMiningSession != null)
     {
         return(CurMiningSession.GetTotalRate());
     }
     return(0);
 }
Exemplo n.º 2
0
 public static double GetTotalRate()
 {
     return(_curMiningSession?.GetTotalRate() ?? 0);
 }