How to Use List in Asp.net

Source: Internet
Author: User

However, it is written in the traditional C-type syntax structure ,. net, but some convenient data structures are not used. net2.0 supports generic type. I used it for a moment. Oh, good! I am lucky to be a lazy! Write it down and take a note!

ProgramCode Copy codeThe Code is as follows: console. writeline ("list test :");
// Declare an integer list
List <int> lstest = new list <int> ();
Lstest. Add (7 );
Lstest. Add (5 );
Lstest. Add (1 );
Lstest. Add (3 );
String strtest = "";
// Sort the list
Lstest. Sort ();
// List Traversal
Foreach (int I in lstest)
Strtest + = I. tostring () + "";
// Output after formatting
Console. Write (string. Format ("Out: {0} \ ncount: {1} \ n", strtest, lstest. Count ));
// Read the next button to display data on the screen
Console. readkey ();

The output result is as follows:

Program codeCopy codeThe Code is as follows: List test:
Out: 1 3 5 7
Count: 4

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.