0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

C#

Last updated at Posted at 2019-10-02

C# 개발

환경설정

1. ini파일 쓰기/읽기

// import
using System.Runtime.InteropServices;

// .ini파일 쓰기함수
[DllImport("kernel32")]
private static extern long WritePrivateProfileString(string section, string key, string val, string filePath);
// .ini파일 읽기함수
[DllImport("kernel32")]
private static extern int GetPrivateProfileString(string section, string key, string def, StringBuilder retVal, int size, string filePath);

2. DB 접속

가상머신 DB

- 가상 머신에서의 MS-SQL 설치와 운영

- 방화벽 설정

문법

1. 델리게이트

- 강의

1. Func & Action 델리게이트

- 강의

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?