예제 #1
0
파일: Percentage.cs 프로젝트: riyanhax/Maui
 public static TableSchema Percentage(this IMslScript script, DataColumn dividend, DataColumn divisor)
 {
     return(script.Percentage(dividend, divisor, null));
 }
예제 #2
0
파일: Percentage.cs 프로젝트: riyanhax/Maui
 public static TableSchema Percentage(this IMslScript script, TableSchema dividend, TableSchema divisor, DataColumn into)
 {
     return(script.Percentage(dividend["value"], divisor["value"], into));
 }
예제 #3
0
파일: Percentage.cs 프로젝트: riyanhax/Maui
 public static TableSchema Percentage(this IMslScript script, TableSchema dividend, TableSchema divisor)
 {
     return(script.Percentage(dividend["value"], divisor["value"]));
 }