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