Skip to content

Commit

Permalink
#26 매개변수와 반환
Browse files Browse the repository at this point in the history
  • Loading branch information
guddus326 committed Jul 1, 2021
1 parent 5ac5f2c commit be8423d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CSBasic5/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ namespace CSBasic5
{
class Program
{

class Test
{
// Method Signature
Expand Down Expand Up @@ -43,6 +44,9 @@ static void Main(string[] args)
Console.WriteLine(me.Multi(52, 273));
Console.WriteLine(me.Multi(103, 32));
me.Print();

Test test = new Test();
Console.WriteLine(test.Sum(1, 100));
}
}
}

0 comments on commit be8423d

Please sign in to comment.