“C SHARP LIST Длина” Ответ

C SHARP LIST Длина

// To get the length of a List use 'List<T>.Count'
List<string> stringList = new List<string>{"string1", "string2"};
stringList.Count
// Output:
// 2
SkelliBoi

C# СПИСОК ДЛИНА

//the using that need with list
using System;
using System.Collections.Generic;

//create List
List<int> list = new List<int>() {7,5,1,4 };
//set the length of the list to variable
int listLenght = list.Count;
//print length of the list
Console.WriteLine(listLenght);
Rich Raven

Получить длину списка C#

public List<int> values;
public int listLength;

listLength = values.Count;
Pleasant Petrel

Ответы похожие на “C SHARP LIST Длина”

Вопросы похожие на “C SHARP LIST Длина”

Больше похожих ответов на “C SHARP LIST Длина” по C#

Смотреть популярные ответы по языку

Смотреть другие языки программирования