반응형
C# 언어에서 중요한 메서드를 나열하고 간단한 샘플 코드를 함께 제공하겠습니다. 이 샘플 코드는 각 메서드의 기본적인 사용법을 보여줍니다.
1. Console.WriteLine(): 콘솔에 텍스트를 출력하는 데 사용됩니다.
Console.WriteLine("Hello, C#!");
2. string.Format(): 문자열을 서식화하는 데 사용됩니다.
string name = "John";
int age = 25;
string formattedString = string.Format("Name: {0}, Age: {1}", name, age);
Console.WriteLine(formattedString);
3. Console.ReadLine(): 사용자로부터 콘솔에서 입력을 읽는 데 사용됩니다.
Console.Write("Enter your name: ");
string userInput = Console.ReadLine();
Console.WriteLine("You entered: " + userInput);
4. List<T>.Add(): List 컬렉션에 항목을 추가하는 데 사용됩니다.
List<int> numbers = new List<int>();
numbers.Add(1);
numbers.Add(2);
numbers.Add(3);
5. Array.Length: 배열의 길이를 반환하는 데 사용됩니다.
int[] numbers = { 1, 2, 3, 4, 5 };
int arrayLength = numbers.Length;
Console.WriteLine("Array Length: " + arrayLength);
6. String.Split(): 문자열을 지정된 구분자를 기반으로 분할하는 데 사용됩니다.
string names = "John,Jane,Jim";
string[] nameArray = names.Split(',');
foreach (string name in nameArray)
{
Console.WriteLine(name);
}
7. File.ReadAllText(): 파일에서 텍스트를 읽는 데 사용됩니다.
using System.IO;
string filePath = "example.txt";
string fileContent = File.ReadAllText(filePath);
Console.WriteLine("File Content: " + fileContent);
8. try-catch 블록: 예외 처리를 위한 구문입니다.
try
{
// 예외가 발생할 수 있는 코드
int result = 10 / 0;
}
catch (DivideByZeroException ex)
{
// 예외 처리
Console.WriteLine("Error: " + ex.Message);
}
이 메서드들은 C# 프로그래밍에서 매우 일반적이며 유용한 기능을 제공합니다. 프로젝트의 요구에 따라 다양한 다른 메서드와 기능을 사용해야 할 수 있습니다.
반응형
'IOS' 카테고리의 다른 글
ISO 언어를 사용하여 CSV 데이터 생성하기 (0) | 2023.11.22 |
---|---|
IOS 중요 메서드 정리 (0) | 2023.11.16 |
IOS 로또 당첨번호 자동 생성하기 (0) | 2023.11.06 |
IOS 코드 최적화 방법 (0) | 2023.11.01 |
IOS 대표적인 에러의 해결 방법 (0) | 2023.10.23 |
댓글