728x90
SMALL

// 디폴트

/////////////////

// のデフォルト値

using System;

 

public class Lesson06

{

    public static void Main()

    {

    Introduce("勇者");

    }

   

    public static void Introduce(string name)

    {

        Console.WriteLine("私は" + name + "です。");

    }

   

}

////

//私は勇者です。

 

//

//

// のデフォルト値

using System;

 

public class Lesson06

{

    public static void Main()

    {

    Introduce("勇者");

    Introduce();

    }

   

    public static void Introduce(string name = "村人")

    {

        Console.WriteLine("私は" + name + "です。");

    }

   

}

//Introduce에서

// 디폴트치를 지정할 수 있다.

// 私は勇者です。
// 私は村人です

//

//

// のデフォルト値

using System;

 

public class Program

{

    public static void Main()

    {

SayHello("Hello");

    }

 

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

    {

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

    }

}

//////

//

728x90

설정

트랙백

댓글