본문 바로가기

C#

(5)
ASCII code table [ASCII 코드표] 10진수16진수문자10진수16진수문자10진수16진수문자10진수16진수문자 0 0x00 NUL 32 0x20 Space 64 0x40 @ 96 0x60 ` 1 0x01 SOH 33 0x21 ! 65 0x41 A 97 0x61 a 2 0x02 STX 34 0x22 " 66 0x42 B 98 0x62 b 3 0x03 ETX 35 0x23 # 67 0x43 C 99 0x63 c 4 0x04 EOT 36 0x24 $ 68 0x44 D 100 0x64 d 5 0x05 ENQ 37 0x25 % 69 0x45 E 101 0x65 e 6 0x06 ACK 38 0x26 & 70 0x46 F 102 0x66 f 7 0x07 BEL 39 0x27 ' 71 0x47 G 103 0x67 g 8 0x08 BS..
GetBytes(String) - C# https://archive.md/T2AlW https://docs.microsoft.com/en-us/dotnet/api/system.text.encoding.getbytes?view=net-6.0 Encoding.GetBytes Method (System.Text) When overridden in a derived class, encodes a set of characters into a sequence of bytes. docs.microsoft.com GetBytes(String) - When overridden in a derived class, encodes all the Characters in the specified String into a sequence of Bytes.
ToString("D4") - C# https://archive.ph/18Gjk https://bitwizx.tistory.com/3 0 채우기 (Zero Padding) 여러가지 방법 C#에서 숫자에서 문자열을 만들 때에 0을 채워 표현하기 위한 방법 생각보다 다양한 방법이 있다. 개인적으로는 'num.ToString("D4")'를 많이 사용한다. 코드 int[] nums = { 1, 12, 123, 1234, 12345 }; foreach.. bitwizx.tistory.com i.ToString().PadLeft(4, '0') - okay, but doesn't work for negative numbers i.ToString("0000"); - explicit form i.ToString("D4"); - short form form..
C#/.NET String과 string의 차이, Int32와 int의 차이 https://archive.ph/LqdHQ https://hijuworld.tistory.com/20 C#/.NET String과 string의 차이, Int32와 int의 차이 C#에서 변수타입 String과 string 둘다 사용이 가능하다. 두 타입의 차이는 무엇일까? 결론은 차이가 없다. 아래 소스코드는 모두 정상적으로 컴파일되며 실행된다. 물론 실행 결과역시 차이가 없다. hijuworld.tistory.com C#에서 변수타입 String과 string 둘다 사용이 가능하다. 두 타입의 차이는 무엇일까? 결론은 차이가 없다. 아래 소스코드는 모두 정상적으로 컴파일되며 실행된다. 물론 실행 결과역시 차이가 없다. 1 2 3 4 string str1 = "abc"; String str2 = "a..
C# 기본자료형, 변수 1. 기본 자료형 자료형(Data Type) : 데이터를 담을 수 있는 형식 기본 자료형(Primitive Data Type) : 개발자가 별도의 코드를 만들지 않아도 언어에서 자체적으로 제공하는 데이터 형식 다음은 C#에서 제공하는 기본 자료형이다. 자료형 형식 범위 크기 sbyte System.SByte -128 ~ 127 부호 있는 8 bit 정수 byte System.Byte 0 ~ 255 부호 없는 8 bit 정수 short System.Int16 -32,768 ~ 32,767 부호 있는 16 bit 정수 ushort System.UInt16 0 ~ 65,535 부호 없는 16 bit 정수 int System.Int32 -2,147,483,648 ~ 2,147,483,647 부호 있는 32 bi..