La estructura de rango se introduce en C# 8.0. Representa un rango que tiene índices de inicio y fin. Se le permite un objeto Range desde el primer elemento de la colección o secuencia especificada hasta un índice final especificado con la ayuda del método EndAt() proporcionado por la estructura Range. O, en otras palabras, el método EndAt() devuelve un rango que comienza desde el primer elemento de la colección dada y termina en el índice especificado.
Sintaxis:
public static Range EndAt(Index end);
Aquí, el índice final representa el índice final.
Ejemplo 1:
// C# program to illustrate how // to create a range using // EndAt() method of Range struct using System; namespace range_example { class GFG { // Main Method static void Main(string[] args) { // Creating range // using Range constructor var r1 = new Range(2, 4); // Creating range // using Range operator Range r2 = 1..10; // Creating a range // using EndAt() method var r3 = Range.EndAt(6); // Displaying all the ranges Console.WriteLine("Range_1: " + r1); Console.WriteLine("Range_2: " + r2); Console.WriteLine("Range_3: " + r3); } } }
Producción:
Range_1: 2..4 Range_2: 1..10 Range_3: 0..6
Ejemplo 2:
// C# program to illustrate // how to create a range using // EndAt() method of Range struct using System; namespace range_example { class GFG { // Main Method static void Main(string[] args) { // Creating and initializing an array int[] arr = new int[8] {100, 200, 300, 400, 500, 600, 700, 800}; // Creating a range // using EndAt() method var r = Range.EndAt(5); var new_arr = arr[r]; // Displaying the range // and the elements Console.WriteLine("Range: " + r); Console.Write("Numbers: "); foreach(var i in new_arr) Console.Write($" [{i}]"); } } }
Producción:
Range: 0..5 Numbers: [100] [200] [300] [400] [500]
Publicación traducida automáticamente
Artículo escrito por ankita_saini y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA