728x90
SMALL

// 名前付き引を理解しよう

using System;

 

public class Lesson06

{

    public static void Main()

    {

 

SayHello(target: "네코센세");

SayHello(greeting:"おはようございます。");

// 생략 시킬 수도 있다.

    }

   

    public static void SayHello(string greeting = "Hello", string target = "world")

    {

       

        Console.WriteLine(greeting + " " + target);

    }

}

///////

///

///

// 名前付き引を理解しよう

using System;

 

public class Program

{

    public static void Main()

    {

        SayHello(target: "paiza");

    }

 

    public static void SayHello(string greeting = "Hello", string target = "world")

    {

        Console.WriteLine(greeting + " " + target);

    }

}

///

///

///

///

 

728x90

설정

트랙백

댓글