473,657 Members | 2,546 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Values in List<int> getting sorted.. why?

I am adding integer values from a datarow collection to a List<int> using
the Add method. The values are read in the correct order from the
collection but once the List is populated, the values in the List are
sorted in ascending order. Why? This
is undesirable.

John Dalberg
Apr 7 '06 #1
2 1787
I just tried out a code snippet like this and my generic list remains
unsorted until I called Sort() on the list. Are you sure that the data
is coming back from your query unsorted or that you are not using a
sorted list to begin with?

This fills a list unsorted, prints it, sorts it then prints again
sorted.

Random r = new Random();
List<int> ul = new List<int>();
for(int i = 0; i < 100; ++i) ul.Add(r.Next(1 , 100));
foreach(int i in ul) Console.Write(" {0} ", i);
ul.Sort();
Console.WriteLi ne();
foreach(int i in ul) Console.Write(" {0} ", i);

Apr 7 '06 #2
"gr***********@ gmail.com" <gr***********@ gmail.com> wrote:
I just tried out a code snippet like this and my generic list remains
unsorted until I called Sort() on the list. Are you sure that the data
is coming back from your query unsorted or that you are not using a
sorted list to begin with?

This fills a list unsorted, prints it, sorts it then prints again
sorted.

Random r = new Random();
List<int> ul = new List<int>();
for(int i = 0; i < 100; ++i) ul.Add(r.Next(1 , 100));
foreach(int i in ul) Console.Write(" {0} ", i);
ul.Sort();
Console.WriteLi ne();
foreach(int i in ul) Console.Write(" {0} ", i);


I did some more investigation and I found out that I needed to add a sort
to my datatable select method even though the original sql query had an
order by.

Thanks for your help.

John Dalberg
Apr 7 '06 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
12662
by: deathtospam | last post by:
Is it possible to Databind to a strongly-typed list of integers (List<int>) ? I want to use <%# Databinder.Eval(Container.DataItem, "XXX") %inside a Repeater control in my ASPX page, but I don't know how to get at the List<intvalue. -= Tek Boy =-
2
2241
by: per9000 | last post by:
Hi, *background* I want a class containing an int (a list of sets of integer). This should be hidden for the user and he/she should be able to insert his/her favourite data structure so to be a little fancy I thought I'd do a Ctor like this: // this is the "core": private int sets;
8
2687
by: per9000 | last post by:
Hi, I wanted to test to compile an application I build for .NET 2.0 in with the 1.1 C# compiler. I encountered difficulties since I had a List<myClass>. I found a list of what is new in .NET 2.0 and generics is on it - I assume this is why I encounter problems. So this raises a number of questions: - What is the best replacement of List<intin 1.1 (or is the list just in another namespace)?
10
5004
by: arnuld | last post by:
It is quite an ugly hack but it is all I am able to come up with for now :-( and it does the requires work. I want to improve the program, I know you people have much better ideas ;-) /* C++ Primer - 4/e * * exercise 9.20 * STATEMENT: * Write a program to to compare whether a vector<intcontains the
10
6059
by: arnuld | last post by:
WANTED: /* C++ Primer - 4/e * * Exercise: 9.26 * STATEMENT * Using the following definition of ia, copy ia into a vector and into a list. Use the single iterator form of erase to remove the elements with odd values from your list * and the even values from your vector.
2
1671
by: =?Utf-8?B?QW50?= | last post by:
Hi, I found in MSDN some sample code: List<intnumQry = ...etc I couldn't find any info in MSDN on List or <intthough. Does anybody know what this is & in which namespace it belongs in? Many thanks for any help
0
1331
by: DR | last post by:
System.Collections.Generic.List<intmyList = new System.Collections.Generic.List<int>(100); Does this preallocate 100 integers? Also, is there any way to preallocate an array of objects all at once? MyOb al= new MyOb; for (int z = 0; z < nCount; z++)
1
1635
by: Danny Ni | last post by:
Hi, I am using a method created by other, the function returns List<int>. If I bind this to a Repeater, what should the data binding expresssion looks like? <%# Eval("I don't know what to put in here") %> TIA
15
18629
by: hsachdevah | last post by:
Hello, I am trying to create a dictionary item with its key as list type and value as custom object type. It gives me a error "An item with the same key has already been added." Here is my code: List<int> Pkey = new List<int>(); Dictionary<List<int>, Polynomial> A = new Dictionary<List<int>, Polynomial>(); // initialize A with last column. for (int r = 0; r < n; ++r)
0
8743
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8522
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8622
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7355
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6177
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5647
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4173
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4333
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2745
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.