Filter() public method

public Filter ( int x ) : int
x int
return int
コード例 #1
0
ファイル: Program.cs プロジェクト: tppApe/UfcppSample
        static void Main(string[] args)
        {
            var x = new Logic();

            Console.WriteLine(x.Filter(10));
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: ufcpp/UfcppSample
 static void Main(string[] args)
 {
     var x = new Logic();
     Console.WriteLine(x.Filter(10));
 }