命名参数

using System;

 

class NamedArgsDemo{

    static bool IsFactor(int val, int divisor){

        if((val % divisor) == 0) return true;

        return false;

    }

 

    static void Main(){

        if(IsFactor(10,2)){

            Console.WriteLine("2 is factor of 10.");

        }

        if(IsFactor(val:10, divisor:2)){

            Console.WriteLine("2 is factor of 10.");

        }

        if(IsFactor(divisor:2, val:10)){

            Console.WriteLine("2 is factor of 10.");

        }

        if(IsFactor(10,divisor:2)){

            Console.WriteLine("2 is factor of 10.");

        }

    }

}

你可能感兴趣的:(命名参数)