개발언어 (3) 썸네일형 리스트형 Oracle Database XE 설치하기 1. 다운로드 링크 https://www.oracle.com/kr/database/technologies/appdev/xe/quickstart.html Oracle Database Express Edition Quick Start | Oracle 대한민국 If you are experienced at installing software then use the steps provided below. For more information and full step-by-step instructions please review the installation guides for Linux or Windows. www.oracle.com 2. 설치 ※ 데이터베이스 비밀번호를 설정하고 반드시 기억해 두자. 3. 실행.. .NET기반 ScottPlot 사용하기 1. GitHub에서 샘플 프로젝트 파일을 다운 받는다. https://github.com/ScottPlot/ScottPlot/tree/4.0-stable GitHub - ScottPlot/ScottPlot: Interactive Plotting Library for .NET Interactive Plotting Library for .NET. Contribute to ScottPlot/ScottPlot development by creating an account on GitHub. github.com 2. "ScottPlot-4.0-stable.zip" 압축파일을 해제한다. 3. Visual Studio 2019을 이용하여 "ScottPlotV4.sln"을 빌드한다. 4. "ScottPlot.Demo.. C# for loop 병렬 처리 1부터 100,000까지 병령처리한 예제이다. using System; using System.Threading; using System.Threading.Tasks; namespace ParallelForLoop { class Program { static void Main(string[] args) { Parallel.For(0, 100000, (i) => { Console.WriteLine("{0}: {1}", Thread.CurrentThread.ManagedThreadId, i); }); } } } 이전 1 다음