목록프로그래밍/C# (11)
지식 창고
BeomBeomJoJo - Programmer BeomBeomJoJo - Programmer 프로그래밍 & IT 제품 리뷰 & 중국 생활 & 데이트 & 일상 생활 TIP!! afsdzvcx123.tistory.com

https://www.csharpstudy.com/Practical/Prac-service-program.aspx C# 서비스 프로그램 - C# 프로그래밍 배우기 (Learn C# Programming) 윈도우즈 서비스 프로그램 작성 윈도우즈 서비스 프로그램은 보통 Windows OS가 구동되면서 시스템에 의해 백그라운에서 자동으로 실행되는 프로그램이다. Windows Service 프로그램은 일반 콘솔이나 www.csharpstudy.com 윈도우즈 서비스 프로그램은 보통 Windows OS가 구동되면서 시스템에 의해 백그라운에서 자동으로 실행되는 프로그램이다. Windows Service 프로그램은 일반 콘솔이나 UI 프로그램과 달리, Session 0라고 불리우는 백그운드에서 실행되어 사용자가 UI..
https://m.blog.naver.com/PostView.naver?isHttpsRedirect=true&blogId=roboinside&logNo=221178543629 C#에서 메모리에 로드된 이미지를 전달하거나 C++에서 C#으로 전달 받는 방법 Byte[] Byte* C#에서 메모리에 로드된 이미지를 전달하거나 C++에서 C#으로 전달 받는 방법 C++에서는 OpenCV를 ... blog.naver.com C#에서 메모리에 로드된 이미지를 전달하거나 C++에서 C#으로 전달 받는 방법 C++에서는 OpenCV를 이용해 변환받고 C#에서는 Bitmap을 통해 이미지를 변환함 C#부분 ---------------------------------------------------------------..
using System.Collections; string[] colors = {"red", "blue", "green"}; // Array Array.Sort(colors); Array.Reverse(colors); // Stack Stack stack = new Stack(); stack.Push(100); stackPop(); // Queue Queue queue = new Queue(); queue.Enqueue(100); queue.Dequeue(); // ArrayList ArrayList list = new ArrayList(); list.Add(10); list.Add(20); list.RemoveAt(1); list.Insert(0, 50); // HashTable Hashtable ha..
int[] numbers = new int[3]; int[] numbers = new int[] { 10, 20, 30 }; int[] numbers = { 10, 20, 30 }; int[,] numbers = { {1, 2, 3}, {4, 5, 6} }; for(int i=0; i
Char c = 'A'; String s = "안녕하세요"; Boolean = true; Console.WriteLine("{0}\n{1}\n{2}", c, s, b); > Result A 안녕하세요. True int number1 = 1234; Int32 number2 = 1234; Console.WriteLine($"{number1}, {number2}"); > Result 1234, 1234 $"{DateTime.Now.Year}-{DateTime.Now.Month}-{DateTime.Now.Day}" > Result 2021-11-02
event Action eventAction; eventAction += Func_eventAction; private void Func_eventAction(String name, bool bFirst) { } private void click(object sender, RoutedEventArgs e) { if(eventAction != null) { String name = "test"; bool bFirst = false; eventAction(name, bFirst); } }
using System.Linq; using System.Task; using System.Threading.Tasks; namespace Delegate { public class TestClass { delegate void MyDelegate(); delegate int AddDelegate(int a, int b); public TestClass() { MyDelegate myDelegate = Func; AddDelegate addDelegate = Add; myDelegate(); addDelegate(3, 4); } public void Func() { } public int Add(int a, int b) { return a+b; } } } public d elegate int MyDele..