강의

멘토링

커뮤니티

Inflearn Community Q&A

xvtwx98765760's profile image
xvtwx98765760

asked

[MMORPG Game Development Series with C# and Unity] Part 1: Introduction to Basic C# Programming

Practice Problems

별찍기

Written on

·

296

0

바로 시작해서 console.write 있는줄 모르고

        static string addstar(ref string star)

        {

            return star + "*";

        }

        static void Main(string[] args)

        {

                string star = "*";

           while(1 > 0)

            {

                star = Program.addstar(ref star);

                Console.WriteLine(star);

                Thread.Sleep(50);

            }

        }

    }

}

그냥 이렇게 만들었네요;

c# 배우다보니 영어 쓸때 자연스럽게 ;  붙이는건 나만 그런가;;

C#

Answer 1

0

xvtwx9876님의 프로필 이미지
xvtwx9876
Questioner

루프는 그냥 계속 돌렸어요 ㅋㅋ

xvtwx98765760's profile image
xvtwx98765760

asked

Ask a question