본문 바로가기

Development/C#

(5)
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..
NetworkStream Class https://archive.ph/hleaO https://docs.microsoft.com/en-us/dotnet/api/system.net.sockets.networkstream?view=net-6.0#definition NetworkStream Class (System.Net.Sockets) Provides the underlying stream of data for network access. docs.microsoft.com Definition Namespace: System.Net.Sockets Assembly:System.Net.Sockets.dll Provides the underlying stream of data for network access. C# public class Netwo..
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..