일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- PySpark
- django
- Github
- math
- Kotlin
- Google Spreadsheet
- Mac
- c#
- list
- GIT
- Tkinter
- 파이썬
- numpy
- google apps script
- Google Excel
- Python
- Excel
- hive
- Apache
- array
- PANDAS
- dataframe
- gas
- Java
- PostgreSQL
- string
- SQL
- matplotlib
- Redshift
- Today
- Total
목록c# (87)
달나라 노트
C# 개발은 Visual Studio를 사용해도 되지만 VS Code로도 가능합니다. 1. Install VS Code 먼저 VS Code를 설치합시다. https://code.visualstudio.com/ Visual Studio Code - Code Editing. Redefined Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications. Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows. code.visualstudio...
Convert.ToString method는 어떠한 10진수를 2진수, 8진수, 16진수로 변경해줍니다. Syntax Convert.ToString(10진수 정수, n진수) Convert.ToString은 위처럼 2개의 인자를 받습니다. 10진수 정수 = 다른 표시형식으로 바꿀 10진수입니다. n진수 = 몇 진수로 바꿀지에 대한 숫자입니다. using System; class MyProgram { public static void Main() { int test = 10; String test_2 = Convert.ToString(test, 2); String test_8 = Convert.ToString(test, 8); String test_16 = Convert.ToString(test, 16); ..
C#에서 Form에 이미지를 띄우는 방법 중 하나인 DrawImage를 알아보겠습니다. - 참고 : PictureBox를 이용한 이미지 띄우기는 아래 링크를 참고하면 됩니다. https://cosmosproject.tistory.com/564 C# : PictureBox (사진 띄우기) PictureBox class는 이미지를 띄울 수 있는 박스입니다. 아래 코드를 봅시다. 참고로 저는 C:\Users\Public\arraw.png 경로에 아래 이미지를 넣어뒀습니다. 직접 그림판으로 만든 이미지인데 위 이미지를 사 cosmosproject.tistory.com 여기서는 일단 이미지가 필요하기 때문에 제가 아래 이미지를 그림판으로 그려서 arrow.png 파일로 생성해뒀습니다. 이미지가 있는 경로는 C:\..
PictureBox class는 이미지를 띄울 수 있는 박스입니다. 아래 코드를 봅시다. 참고로 저는 C:\Users\Public\arraw.png 경로에 아래 이미지를 넣어뒀습니다. 직접 그림판으로 만든 이미지인데 위 이미지를 사용해도 되고 직접 그림판으로 그려도 됩니다. using System; using System.Windows.Forms; using System.Drawing; class MyProgram { public static void Main() { Form fm = new Form(); fm.Width = 500; fm.Height = 300; PictureBox pb = new PictureBox(); pb.Parent = fm; pb.Image = Image.FromFile("C:..