C# 프로그래밍에서 함수를 중단 시켜야 될 경우return;이렇게 return; 만 쓰시면 됩니다 예제)// i 를 5까지 증가시키다가 5보다 크다면 함수 종료private void test(){int i = 1;if(i > 5){return;}i++;}
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Runtime.InteropServices; // 추가해주시고 namespace ConsoleApplication1{ class Program { // DllImport [DllImport("kernel32")] private static extern long WritePrivateProfileString(string section, string key, string val, string filePath); [DllImport("kernel32")] private static exter..
datagridview 에 데이터 입력시 첫행이 파란색으로 선택되어져 있을때 보기 싫은분은datagridview1.CurrentCell = null;이거 한줄만 삽입해주시면 됩니다