일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- SERIAL
- 3D
- APP
- Read
- digitalRead
- Android
- wpf
- public
- length
- Class
- Contour
- parameter
- compare
- java
- Encapusulation
- Unity
- Pointer
- flutter
- c++
- sensor
- mfc
- Barcode
- inheritance
- preprocessing
- file access
- UNO
- aduino
- atmega328
- memory
- stream
- Today
- Total
목록list (3)
폴크(FOLC)

int x = 0;bool b = false;string s = null;MyClass obj = nullint[] arr = null; // null (배열은 참조형)int[] numbers = new int[5]; // {0, 0, 0, 0, 0}byte[] arr = null; // null (배열은 참조형)byte[] numbers = new byte[0];byte[] numbers = Array.Empty(); float[] arr = null; // null (배열은 참조형) float [] numbers = new float[0]; float [] numbers = Array.Empty();string[] names = new string[3]; // {null..

# WPF 를 이용하는 과정에서 HDD 에 존재하는 파일 ( csv format ) 제어 > Save, Load 형태 - StreamWriter, StreamReader 이용 > exe 파일 위치에 test.csv 파일 생성 # 소스 코드 using System.Collections; using System.Collections.Generic; using System.IO; public class CSVformat { struct CSVData { public string key; public string value; public CSVData(string _key, string _value) { _key= _key.Replace(",", " "); _value= _value.Replace(",", " ..

# WPF 를 이용하는 과정에서 HDD 에 존재하는 파일 ( binary format ) 제어 > Save, Load 형태 - List 형태 이용 > exe 파일 위치에 test.dat 파일 생성 # 소스 코드 using System.Runtime.Serialization.Formatters.Binary; public class BINformat { [Serializable] struct Data { public string key; public string value; public Data(string _key, string _value) { key= _key; value= _value; } } public void WriteReadTest() { string path = System.Reflectio..