2024/09/26 3

2024 09 26 TIL

오늘은 깃허브 데스크톱의 사용법에 대해 적습니다. 이미 사용중인 저장소가 있어 시작화면 창이 나타나지 않습니다.  사용중인 저장소의 오른쪽 화살표를 클릭하여 Add버튼을 눌러줍니다. Create new repository를 눌러줍니다. 저장소의 이름과  경로위치를 확인하고 ReadMe 파일(타인에게 무슨 프로젝트인지 알려줘야 하기에)Git ignore 은 사용할 툴을 선택하여주고 create repository 를 해줍니다. Publish repository를 하지 않으면 저장소는 로컬에만 있는 것이기에 다른사람들과 공유하고 싶다면 꼭 눌러줍시다.

TIL 2024.09.26

메소드 활용

Void 는 반환값을 가지지 않는 다는 것을 선언하므로 반환값을 가질수 없다public void PrintXX(){}int x = CheckInput( int min, int max) //매개변수를 활용하여 조건값을 설정int CheckInput(){ int result; while(true) //무한루프 { string strinput = Console.ReadLine(); bool isSuccess =int.TryParse(strinput,out result) ; if(isSuccess) { if(result >=min && result void 를 제외한 반환값을 가지는 메소드는 항상 리턴값을 가져야한다.

카테고리 없음 2024.09.26

TryParse

string str = "10";int x;Int.TryParse(str,out x);string str ="true";bool b;bool.TryParse(str,out b);string str = "10";int x;bool success;success = int.TryParse(str,out x); //변환에 성공하였다면 success = trueConsole.WriteLine(x); // 출력결과 10int result; //입력한 변수값을 저장해야 하므로 while문 밖에 선언while(true) //무한루프{ string strinput = Console.ReadLine(); //문자열을 입력받아 변수에 저장 bool isSuccess =int.TryParse(strinput,out ..

카테고리 없음 2024.09.26