midas+son의 크리에이티브(creative) 이야기

/*

//c++ 에서는 아래의 같았다.

system("title Son's RPG");    //타이틀 명 수정 "Son's RPG" 을 넣는 것

system("mode con:cols=127 lines=36");   //창크기 127글자, 36글자

*/

//c# 에서는 아래와 같다.

Console.Title = "Son's RPG";    //타이틀 명 수정 "Son's RPG"을 넣는 것

Console.SetWindowSize(127,36);  //창크기 127글자, 36글자


//pixel 단위가 아니라 한 글자 크기 단위

'공부 > C#' 카테고리의 다른 글

랜덤  (0) 2016.05.09
함수인자 ref, out  (0) 2016.05.09
Console 입력 버퍼 검사  (0) 2016.05.08
Console 커서 포지션(CursorPosition)  (0) 2016.05.08
class - is , as  (0) 2016.05.08