C#의 Decimal 구조체는 10진수 부동 소수점 숫자를 나타냅니다. Decimal 값 형식은 양수 79,228,162,514,264,337,593,543,950,335에서 음수 79,228,162,514,264,337,593,543,950,335 범위의 십진수를 나타냅니다. Decimal의 기본값은 0입니다. 이제 Decimal Struct −의 방법에 대한 몇 가지 예를 살펴보겠습니다. Decimal.Add() C#의 Decimal.Add() 메서드는 두 개의 지정된 Decimal 값을 추가하는 데 사용됩니다. 구문 다음
C#의 콘솔 클래스는 콘솔 애플리케이션의 표준 입력, 출력 및 오류 스트림을 나타내는 데 사용됩니다. C#에서 콘솔 클래스 속성의 몇 가지 예를 살펴보겠습니다. − Console.CursorLeft 속성 C#에서 콘솔의 CursorLeft를 변경하려면 Console.CursorLeft 속성을 사용하세요. 예시 예를 들어 보겠습니다 - using System; class Demo { public static void Main (string[] args) { Consol
C#의 Console.KeyAvailable() 속성은 입력 스트림에서 키 누름이 가능한지 여부를 나타내는 값을 가져오는 데 사용됩니다. 구문 구문은 다음과 같습니다 - public static bool KeyAvailable { get; } 예 이제 C#에서 Console.KeyAvailable() 속성을 구현하는 예를 살펴보겠습니다 - using System; using System.Threading; class Demo { public static void Main (string[] args) { &
C#의 Console.MoveBufferArea() 메서드는 화면 버퍼의 지정된 소스 영역을 지정된 대상 영역으로 복사하는 데 사용됩니다. 구문 구문은 다음과 같습니다 - public static void MoveBufferArea (int sourceLeft, int sourceTop, int sourceWidth, int sourceHeight, int targetLeft, int targetTop); 여기, 소스 왼쪽 소스 영역의 가장 왼쪽 열입니다. 소스탑 소스 영역의 맨 위 행입니다. 소스폭 소스 영역의
C#의 Console.Read() 메서드는 표준 입력 스트림에서 다음 문자를 읽는 데 사용됩니다. 구문 구문은 다음과 같습니다 - public static int Read (); 예시 이제 C#에서 Console.Read() 메서드를 구현하는 예를 살펴보겠습니다. − using System; public class Demo{ public static void Main(){ int val; Console.WriteLine("
C#의 Console.ReadLine() 메서드는 표준 입력 스트림에서 다음 문자 줄을 읽는 데 사용됩니다. 구문 구문은 다음과 같습니다 - public static string ReadLine (); 예 이제 C#에서 Console.ReadLine() 메서드를 구현하는 예를 살펴보겠습니다. - using System; public class Demo{ public static void Main(){ string str; Conso
C#의 Console.ResetColor() 메서드는 전경 및 배경 콘솔 색상을 기본값으로 설정하는 데 사용됩니다. 구문 구문은 다음과 같습니다 - public static void ResetColor (); 예시 이제 C#에서 Console.ResetColor() 메서드를 구현하는 예를 살펴보겠습니다. - using System; class Demo { public static void Main (string[] args) { Console.WriteLine (&qu
C#의 Console.SetBufferSize() 메서드는 화면 버퍼 영역의 높이와 너비를 지정된 값으로 설정하는 데 사용됩니다. 구문 구문은 다음과 같습니다 - public static void SetBufferSize (int width, int height); 위에서 매개변수 너비는 버퍼 영역의 너비이고 높이는 버퍼 영역의 높이입니다. 예 이제 C#에서 Console.SetBufferSize() 메서드를 구현하는 예를 살펴보겠습니다. - using System; class Demo { public
Queue.CopyTo(T[], Int32) 메서드는 Queue 요소를 1차원 배열로 복사하는 데 사용됩니다. 예 이제 예를 살펴보겠습니다 - using System; using System.Collections.Generic; public class Demo{ public static void Main(){ Queue<string> queue = new Queue<string>(); queue.Enqueue(&
C#의 Uri.IsHexDigit() 메서드는 지정된 문자가 유효한 16진수인지 여부를 확인합니다. 구문 다음은 구문입니다 - public static bool IsHexDigit (char ch); 위의 매개변수 ch는 유효성을 검사할 문자입니다. 예시 이제 Uri.IsHexDigit() 메서드를 구현하는 예를 살펴보겠습니다. - using System; public class Demo { public static void Main(){ char ch = '
C#의 MathF.Cos() 메서드는 주어진 부동 소수점 값 인수의 코사인을 반환합니다. 구문 다음은 구문입니다 - public static float Cos (float val); 위의 Val은 부동 소수점 값입니다. 예시 이제 MathF.Cos() 메서드를 구현하는 예를 살펴보겠습니다. - using System; class Demo { public static void Main(){ float val1 = 70f; float
C#의 MathF.Cosh() 메서드는 부동 소수점 값의 쌍곡선 코사인을 반환하는 데 사용됩니다. 구문 다음은 구문입니다 - public static float Cosh (float val); 위의 Val은 부동 소수점 숫자입니다. 예 이제 MathF.Cosh() 메서드를 구현하는 예를 살펴보겠습니다. - using System; class Demo { public static void Main(){ float val = 45.0f; &nbs
C#의 MathF.Exp() 메서드는 지정된 거듭제곱을 반환합니다. 구문 다음은 구문입니다 - public static float Exp (float val); 위의 Val은 부동 소수점 숫자입니다. 예시 이제 MathF.Exp() 메서드를 구현하는 예를 살펴보겠습니다. - using System; class Demo { public static void Main(){ float val = 90f; float res = MathF
콘솔에서 텍스트의 배경색을 변경하려면 C#에서 Console.BackgroundColorProperty를 사용하십시오. 예시 이제 예를 살펴보겠습니다 - using System; class Demo { public static void Main (string[] args) { Console.BackgroundColor = ConsoleColor.Blue; Console.WriteLine("Background color cha
콘솔의 BufferHeight를 변경하려면 C#에서 Console.BufferHeight 속성을 사용하세요. 예시 이제 예를 살펴보겠습니다 - using System; class Demo { public static void Main (string[] args) { Console.BufferHeight = 200; Console.WriteLine("Buffer Height = "+Console.BufferHeight
C#에서 콘솔의 CursorTop을 변경하려면 Console.CursorTop 속성을 사용하십시오. 예시 이제 예를 살펴보겠습니다 - using System; class Demo { public static void Main (string[] args) { Console.BackgroundColor = ConsoleColor.Blue; Console.WriteLine("Background color changed = &quo
C#의 MathF.Max() 메서드는 지정된 두 숫자 중 큰 숫자를 반환합니다. 구문 다음은 구문입니다 - public static float Max (float val1, float val2); 위에서 val1은 첫 번째 숫자이고 val2는 두 번째 숫자입니다. 이 두 수치가 모두 비교됩니다. 예시 이제 MathF.Max() 메서드를 구현하는 예를 살펴보겠습니다. - using System; public class Demo { public static void Main(){ &
C#의 MathF.Min() 메서드는 지정된 두 숫자 중 가장 작은 숫자를 반환합니다. 구문 다음은 구문입니다 - public static float Min (float val1, float val2); 위에서 val1은 첫 번째 숫자이고 val2는 두 번째 숫자입니다. 이 두 수치가 모두 비교됩니다. 예 이제 MathF.Min() 메서드를 구현하는 예를 살펴보겠습니다. - using System; public class Demo { public static void Main(){  
콘솔의 입력 인코딩 체계를 변경하려면 Console.InputEncoding 속성을 사용하십시오. 예 예를 들어 보겠습니다 - using System; using System.Collections.Generic; using System.Threading.Tasks; using System.Linq; using System.Text; class Demo { public static void Main (string[] args) { Console.BackgroundColor
C#에서 Console.OutputEncoding 속성을 사용하여 C#에서 출력 인코딩 체계를 변경합니다. 예시 예를 들어 보겠습니다 - using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; class Demo { public static void Main (string[] args) { Console.Backgroun