GetTotalRate() public method

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