'C#'에 해당되는 글 15건
- 2017.06.18 C# 한글 인코딩
- 2017.02.14 [ini] ini파일 읽기 쓰기 기본 코드
- 2016.07.08 [Thread]쓰레드 기본 코드
- 2016.03.22 [C#] ListView item 삭제
- 2016.03.22 [C#] ListView 에 Item 추가
private string convertASCII(string value)
{
byte[] convertByte = Encoding.ASCII.GetBytes(value);
for (int i = 0; i < convertByte.Length; i++)
{
}
value = Encoding.ASCII.GetString(convertByte);
return value;
}
private string convertBASE64(string value)
{
byte[] convertByte = Encoding.Unicode.GetBytes(value);
for (int i = 0; i < convertByte.Length; i++)
{
}
value = Convert.ToBase64String(convertByte);
convertByte = Convert.FromBase64String(value);
value = Encoding.UTF8.GetString(convertByte);
return value;
}
private string convertUNI(string value)
{
byte[] convertByte = Encoding.Unicode.GetBytes(value);
for (int i = 0; i < convertByte.Length; i++)
{
}
//value = Convert.ToBase64String(convertByte);
//convertByte = Convert.FromBase64String(value);
value = Encoding.UTF8.GetString(convertByte);
return value;
}
'언어 > C#' 카테고리의 다른 글
C# 데이터 테이블 중복 제거 (0) | 2017.12.26 |
---|---|
Tray Application (0) | 2017.07.13 |
[ini] ini파일 읽기 쓰기 기본 코드 (0) | 2017.02.14 |
[Thread]쓰레드 기본 코드 (0) | 2016.07.08 |
[C#] 걸린 시간 체크 (0) | 2016.06.08 |
using System.Runtime.InteropServices;
[DllImport("kernel32")]
private static extern long WritePrivateProfileString(string section, string key, string val, string filePath);
[DllImport("kernel32")]
private static extern int GetPrivateProfileString(string section, string key, string def, StringBuilder retVal, int size, string filePath);
private string FilePath = AppDomain.CurrentDomain.BaseDirectory + "init.ini";
// ini 파일에 쓰기
private void WriteIni(string section, string key, string value)
{
WritePrivateProfileString(section, key, value, FilePath);
}
// ini파일에서 읽기
private string Readini(string section, string key)
{
StringBuilder temp = new StringBuilder(255);
int ret = GetPrivateProfileString(section, key, "", temp, 255, FilePath);
return temp.ToString();
}
textBox.Text = Readini("Section 값", "Key 값"); //이렇게 읽고
WriteIni("Section 값", "Key 값", textBox.Text); //이렇게 쓴다.
'언어 > C#' 카테고리의 다른 글
Tray Application (0) | 2017.07.13 |
---|---|
C# 한글 인코딩 (0) | 2017.06.18 |
[Thread]쓰레드 기본 코드 (0) | 2016.07.08 |
[C#] 걸린 시간 체크 (0) | 2016.06.08 |
[C#] ListView item 삭제 (0) | 2016.03.22 |
쓰레드를 처음 쓰는 분들을 위한 예제 코드 입니다.
참조만 하세요..ㅎㅎ..
using System.Threading;
//---------------------------------------------------------------------------------------
public class Worker
{
private volatile bool _shouldStop;
public void DoWork()
{
while (!_shouldStop)
{
Console.WriteLine("worker thread: start..." + DateTime.Now.ToString());
try
{
if (_shouldStop == true) break;
//여기에 내가 돌리고 싶은 코드를 ~~~
}
catch (Exception ex)
{
Console.WriteLine(ex.ToString());
}
Thread.Sleep(1000);
}
Console.WriteLine("worker thread: terminating gracefully.");
_shouldStop = false;
}
public void RequestStop()
{
_shouldStop = true;
}
}
//---------------------------------------------------------------------------------------
private Worker worker = new Worker();
private Thread workerThread;
private void button1_Click(object sender, EventArgs e)
{
workerThread = new Thread(worker.DoWork);
workerThread.Start();
Console.WriteLine("Split Thread: Starting worker thread...");
}
private void button2_Click(object sender, EventArgs e)
{
try
{
worker.RequestStop();
workerThread.Join();
}
catch (Exception ex)
{
System.Console.WriteLine(ex.ToString());
}
}
'언어 > C#' 카테고리의 다른 글
C# 한글 인코딩 (0) | 2017.06.18 |
---|---|
[ini] ini파일 읽기 쓰기 기본 코드 (0) | 2017.02.14 |
[C#] 걸린 시간 체크 (0) | 2016.06.08 |
[C#] ListView item 삭제 (0) | 2016.03.22 |
[C#] ListView 에 Item 추가 (0) | 2016.03.22 |
선택된 ListView의 Item 삭제 방법입니다.
if (MessageBox.Show("선택하신 항목이 삭제 됩니다.\r계속 하시겠습니까?", "항목 삭제", MessageBoxButtons.YesNo) == DialogResult.Yes)
{
if (listView.SelectedItems.Count > 0)
{
int index = listView.FocusedItem.Index;
listView.Items.RemoveAt(index);
}
else
{
MessageBox.Show("선택된 항목이 없습니다.");
}
}
'언어 > C#' 카테고리의 다른 글
[ini] ini파일 읽기 쓰기 기본 코드 (0) | 2017.02.14 |
---|---|
[Thread]쓰레드 기본 코드 (0) | 2016.07.08 |
[C#] 걸린 시간 체크 (0) | 2016.06.08 |
[C#] ListView 에 Item 추가 (0) | 2016.03.22 |
[C#] Active Directory 사용자 리스트 가져오기 (0) | 2015.12.08 |
아래처럼 하면 IP, Port, Product 순으로 넣을수 있다.
ListViewItem items = new ListViewItem();
items.Text = ip; //Ip삽입
items.SubItems.Add(port); //port삽입
items.SubItems.Add(product); //product삽입
listView.Items.Add(items); //실제 추가
'언어 > C#' 카테고리의 다른 글
[ini] ini파일 읽기 쓰기 기본 코드 (0) | 2017.02.14 |
---|---|
[Thread]쓰레드 기본 코드 (0) | 2016.07.08 |
[C#] 걸린 시간 체크 (0) | 2016.06.08 |
[C#] ListView item 삭제 (0) | 2016.03.22 |
[C#] Active Directory 사용자 리스트 가져오기 (0) | 2015.12.08 |