취미 기록용 블로그
Golang으로 DLL 만드는거 한번 해봄. 이렇게 만든 dll은 다른 언어에서 사용가능한데 예제를 여기에 정리해봄. package main import ( “C” “fmt” ) //export test1 func test1() { fmt.Println(“===============================”) fmt.Println(“테스트1”) a := 3 b := 5 fmt.Println(“a+b=”, a+b) } //export test2 func… “read more”
using System; using System.IO; namespace ConsoleApp1 { class Program { static void fileCreated(object sender, FileSystemEventArgs e) { Console.WriteLine(@”{0} 생성되었습니다.”, e.Name); } static void fileChanged(object sender, FileSystemEventArgs e) { Console.WriteLine(@”{0} 가 {1} 되었습니다.”, e.Name, e.ChangeType); } static void fileDeleted(object sender, FileSystemEventArgs… “read more”
WPF 프로젝트를 생성하면 기본적으로 MainWindow.xaml이 시작윈도우로 지정된다. 프로그램 시작할때 args의 값에 따라 다른 윈도우가 기본적으로 뜨게 할려고 하는 방법을 여기에 정리해둔다. <Application x:Class=”LinsooHash.App” xmlns=”http://schemas.microsoft.com/winfx/2006/xaml/presentation” xmlns:x=”http://schemas.microsoft.com/winfx/2006/xaml” xmlns:local=”clr-namespace:LinsooHash” StartupUri=”MainWindow.xaml”> App.xaml 파일을 열어보면 StartupUri 라는 부분이 있다. (5번줄) 이 부분을 지우고 Startup이라고 쓰면… “read more”
예전부터 한번 해봐야지 하고 생각만 하다가 안했던 암호화처리 요즘은 나름 보안에 관심을 가져야 겠다 라는 생각에 데이터 네트워크로 송수신할때 암호화는 적용해야 하지 않을까 라는 생각에 간단한 예제 해봄. 암호화에 대한 기초 지식은 https://www.slideshare.net/ssuser800974/ss-76664853 를 참고함 using System; using System.Collections.Generic; using… “read more”