La estructura de rango se introduce en C# 8.0. Representa un rango que tiene índices de inicio y fin. Puede encontrar todo el objeto de rango desde el índice de inicio hasta el final con la ayuda de Todas las propiedades proporcionadas por la estructura de rango. Esta propiedad siempre devuelve un rango de 0..^0 .
Sintaxis:
public static property Range All { Range get(); };
Aquí, Range representa el índice de principio a fin.
Ejemplo 1:
CSharp
// C# program to illustrate the use of the // All property of the Range struct using System; namespace range_example { class GFG { // Main Method static void Main(string[] args) { // Creating range // using Range Constructor var r = new Range(0, 5); // Getting the range objects from // the starting index to end // Using All property var new_r = Range.All; Console.WriteLine(new_r); } } }
Producción:
0..^0
Ejemplo 2:
CSharp
// C# program to illustrate how to use // All property of the 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[10] {23, 45, 67, 78, 89, 34, 89, 43, 67, 89}; // Finding all the range // Using All Property // of Range struct var value = Range.All; var a = arr[value]; // Displaying range and elements Console.WriteLine("Range: " + value); Console.WriteLine("Numbers: "); foreach(var i in a) Console.Write($"{i}, "); } } }
Producción:
Range: 0..^0 Numbers: 23, 45, 67, 78, 89, 34, 89, 43, 67, 89,
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