예제 #1
0
 public static decimal Value(IQBPercentType pct)
 {
     if (pct == null)
     {
         return(0M);
     }
     else
     {
         return((decimal)pct.GetValue());
     }
 }
예제 #2
0
파일: Safe.cs 프로젝트: cubski/Zombie
 public static decimal Value(IQBPercentType pct)
 {
     if (pct == null)
     {
         return 0M;
     }
     else
     {
         return (decimal)pct.GetValue();
     }
 }