ToString() 메서드를 사용하여 지정된 값을 해당 문자열로 변환합니다. 부울 값을 초기화합니다. bool boolVal = false; 이제 이를 문자열로 변환하려면 ToString() 메서드를 사용하십시오. Convert.ToString(boolVal) 다음은 완전한 예입니다. 예시 using System; public class Demo { public static void Main() { bool boolVal = false; &n
AsQueryable() 메서드는 IQueryable 참조를 가져오는 데 사용됩니다. 정수 값의 합을 구하는 예를 살펴보겠습니다. 먼저 정수 배열을 설정합니다. var arr = new int[] { 100, 200, 300, 400 }; 이제 합계를 찾으려면 Queryable Sum() 및 AsQueryable() 메서드를 사용하십시오. Queryable.Sum(arr.AsQueryable()); 다음은 전체 코드입니다. 예 using System; using System.Linq; class Demo { &n
Max() 메서드를 사용하여 시퀀스에서 최대값을 가져옵니다. 다음이 우리의 목록이라고 가정해 보겠습니다. List<long> list = new List<long> { 200, 400, 600, 800, 1000, 1200, 1400, 1600, 1800, 2000 }; Max() 메서드를 사용하여 가장 큰 요소를 가져옵니다. list.AsQueryable().Max(); 예 using System; using System.Collections.Generic; using System.Linq; class D
C#에서 Min() 메서드를 사용하여 시퀀스에서 최소값을 가져옵니다. 다음은 우리의 목록입니다. List<long> list = new List<long> { 1, 2, 3, 4, 5, 6 }; 이제 Queryable Min() 메서드를 사용하여 최소 요소를 가져옵니다. list.AsQueryable().Min(); 예시 using System; using System.Collections.Generic; using System.Linq; class Demo { static void
다음은 요소가 있는 목록입니다 - IList<Employee> emp = new List<Employee>() { new Employee() { EmployeeRank = 4, EmpName = "Amit", EmpMarks = 90 } , new Employee() { EmployeeRank = 05, EmpName = "Raman", EmpMarks = 95 } }; 이제 orderby 및 내림차순을 사용하여 요소를 내림차순
C#에서 Int32를 8진수 문자열로 나타내려면 ToString() 메서드를 사용하고 기본을 ToString() 메서드의 두 번째 매개변수로 설정합니다. 즉, 8진수의 경우 8입니다. Int32는 32비트 부호 있는 정수를 나타냅니다. 먼저 Int32 변수를 설정합니다. int val = 99; 이제 두 번째 매개변수로 8을 포함하여 8진수 문자열로 변환합니다. Convert.ToString(val, 8) 예 using System; class Demo { static void Main() {  
C#에서 Orderby 내림차순을 사용하여 요소를 내림차순으로 정렬합니다. 다음은 우리의 목록입니다 - IList<Employee> emp = new List<Employee>() { new Employee() { EmployeeRank = 3, EmpName = "Tom", EmpMarks = 90 } , new Employee() { EmployeeRank = 4, EmpName = "Katie", EmpMarks = 95 } }; 이제 학생 이름에 따라 목록을 정렬하
UShort는 16비트 부호 없는 정수를 나타냅니다. 16비트 부호 없는 정수를 10진수로 암시적으로 변환하려면 먼저 ushort 값을 설정하십시오. ushort val = 193; ushort를 10진수로 변환하려면 값을 할당하십시오. decimal dec; dec = val; 예를 들어 보겠습니다. 예 using System; public class Demo { public static void Main() { ushort val = 2567; &nb
전체 날짜 긴 시간 표준 형식 지정자의 사용자 지정 날짜 및 시간 형식 문자열은 현재 DateTimeFormatInfo.FullDateTimePattern 속성에 의해 정의됩니다. 사용자 정의 형식 문자열은 - dddd, dd MMMM yyyy HH:mm:ss 예 using System; using System.Globalization; class Demo { static void Main() { DateTime myDate = new DateTime(2018, 8, 1
Reverse 메서드를 사용하여 배열의 요소를 뒤집습니다. 다음은 문자 배열입니다. char[] ch = { 't', 'i', 'm', 'e' }; 이제 AsQueryable() 메서드와 함께 Reverse() 메서드를 사용하여 반대 방향을 가져옵니다. ch.AsQueryable().Reverse(); 전체 코드를 살펴보겠습니다. 예시 using System; using System.Linq; using System.Collections.Generic; public cl
BufferWidth를 사용하여 버퍼 영역의 너비를 가져오거나 설정합니다. 다음과 같이 속성을 사용하십시오 - Console.BufferWidth 전체 예를 살펴보겠습니다. 예시 using System; class Demo { static void Main() { Console.WriteLine("Buffer width (columns) = "+Console.BufferWidth); } } 출력 Buffer width (colu
WindowsTop 속성은 화면 버퍼를 기준으로 콘솔 창 영역의 상단 위치를 가져오거나 설정하는 데 사용됩니다. 최상위 위치를 얻으려면 정수 변수를 선언하십시오. int top; 이제 Console.WindowTop 속성을 사용하십시오. top = Console.WindowTop; 전체 예를 살펴보겠습니다. 예 using System; class Demo { static void Main() { int top; top = Cons
Select 메서드와 Lambda 식을 사용하여 요소의 큐브를 계산합니다. 다음은 우리의 목록입니다. List<int> list = new List<int> { 2, 4, 5, 7 }; 이제 Select() 메서드를 사용하여 큐브를 계산합니다. list.AsQueryable().Select(c => c * c * c); 다음은 전체 예입니다. 예시 using System; using System.Linq; using System.Collections.Generic; public class Demo {
Select 메서드를 사용하여 배열의 요소를 수정합니다. 다음은 문자열 배열입니다. string[] stationery = { "diary", "board", "pencil", "whiteboard" }; Select 메서드는 또한 아래와 같이 Lambda 식을 지정합니다 - 예 using System; using System.Linq; using System.Collections.Generic; public class Demo { p
SelectMany 메소드를 사용하여 오류처럼 요소를 단일 컬렉션으로 축소합니다. 예는 문자열을 문자 배열로 변환하는 것입니다. 다음은 문자열 배열입니다. string[] str = { "Mobile", "Laptop", "Tablet" }; 이제 문자형 배열로 변환합니다. str.SelectMany(item => item.ToCharArray()); 예시 using System; using System.Linq; using System.Collections.Generi
두 시퀀스가 같은지 확인하려면 SequenceEqual() 메서드를 사용하십시오. 먼저 시퀀스를 설정합니다. Employee emp1 = new Employee { EmployeeRank = 4, EmpName = "Amit", EmpMarks = 90 }; Employee emp2 = new Employee { EmployeeRank = 5, EmpName = "Raman", EmpMarks = 95 }; List<Employee> employee1 = new List<Em
문자열 배열을 선언합니다. string [] students = {"Jenifer","Angelina","Vera"}; LinkedList에 추가합니다. string [] students = {"Jenifer","Angelina","Vera"}; 이제 AddLast() 메서드를 사용하여 끝에 노드를 추가합니다. list.AddLast("Anne"); 예시 using System; using System.C
ReadAllLines() 메서드를 사용하여 파일의 모든 줄을 한 줄씩 읽습니다. 다음 줄이 포함된 new.txt 파일이 있다고 가정해 보겠습니다. One Two Three 먼저 읽을 파일의 경로를 설정합니다. String myPath = "new.txt"; 이제 문자열 배열 아래에 추가하여 한 줄씩 가져옵니다. String[] fLine = File.ReadAllLines(myPath); 첫 번째 줄을 가져와야 한다고 가정해 보겠습니다. 그러려면. fLine[0] 다음은 파일에서 한 줄씩 읽는 완전한 예
Single() 메서드를 사용하여 시퀀스의 단일 요소만 가져옵니다. 요소가 하나만 있는 문자열 배열이 있다고 가정해 보겠습니다. string[] str = { "one" }; 이제 요소를 가져옵니다. str.AsQueryable().Single(); 다음은 코드입니다. 예 using System; using System.Linq; using System.Collections.Generic; public class Demo { public static void Main() {
Single() 메서드는 조건을 만족하는 유일한 요소를 반환합니다. 이러한 요소가 두 개 이상 표시되면 오류가 발생합니다. 다음은 문자열 배열입니다. string[] str = { "jack", "tom", "henry", "time"}; 이제 Single() 메서드를 사용하여 각 요소를 가져옵니다. 그런 다음 Lambda 식을 사용하여 길이가 4보다 큰 요소를 계산했습니다. str.AsQueryable().Single(name => name.Lengt