GetTotalRate() public method

public GetTotalRate ( ) : double
return double
 public static double GetTotalRate()
 {
     if (CurMiningSession != null)
     {
         return(CurMiningSession.GetTotalRate());
     }
     return(0);
 }
Beispiel #2
0
 public static double GetTotalRate()
 {
     return(_curMiningSession?.GetTotalRate() ?? 0);
 }