active questions tagged list - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T19:34:06Z http://stackoverflow.com/feeds/tag/list http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1876191/explain-python-join 3 Explain Python .join() Matt McCormick 2009-12-09T19:22:04Z 2009-12-09T19:27:27Z <p>I'm pretty new to Python and am completely confused by .join() which I have read is the preferred method for concatenating strings.</p> <p>I try:</p> <pre><code>strid = repr(595) print array.array('c', random.sample(string.ascii_letters, 20 - len(strid))) .tostring().join(strid) </code></pre> <p>and get something like:</p> <pre><code>5wlfgALGbXOahekxSs9wlfgALGbXOahekxSs5 </code></pre> <p>Why does it work like this? Shouldn't the '595' just be automatically appended?</p> http://stackoverflow.com/questions/1876028/python-how-do-i-dynamically-alter-methods-of-dict-and-list-objects 1 Python: How do I dynamically alter methods of dict and list objects? __mme__ 2009-12-09T18:53:22Z 2009-12-09T19:03:57Z <p>Here is a mockup of what I want to do:</p> <pre><code>alist = [1,2,3,4,5] # create a vanilla python list object replacef (alist) # replace __setitem__, extend,... with custom functions alist[0]=2 # now the custom __setitem__ is called </code></pre> <p>This is for a DSL project where the syntax should be as close to normal python as possible, so subclassing list and making the user call something like alist = MyList(1,2,3,4,5) is not desirable. Also, because the DSL needs to coexist with other libraries, globally changing list and dict is not an option...</p> <p>I have tried creating instancemethods and setting them directly on the object like alist.append = myFunc, but Python says those properties are read only. Changing the <code>__class__</code> attribute seems to be not permitted as well.</p> <p>Is what I am trying to do even possible in Python?</p> http://stackoverflow.com/questions/1875655/why-icollection-index-does-not-work-when-instantiated 1 Why ICollection index does not work when instantiated? demokritos 2009-12-09T17:53:24Z 2009-12-09T18:24:05Z <p>When we declare a parameter as ICollection and instantiated the object as List, why we can't retrive the indexes? i.e.</p> <p><code>ICollection&lt;ProductDTO&gt; Products= new List&lt;ProductDTO&gt;();</code> <code>Products.Add(1,"Pen");</code> <code>Products.Add(2,"Notebook");</code></p> <p>Then, this will not work:<br> <code>ProductDTO product= (ProductDTO)Products[0];</code> </p> <p>What is the bit I am missing?<br> [Yes, we can use List as declaration an it can work, but I don't want to declare as list, like: </p> <p><code>List&lt;ProductDTO&gt; Products= new List&lt;ProductDTO&gt;();</code> </p> <p>]</p> http://stackoverflow.com/questions/1869116/scheme-built-in-to-check-list-containment 1 Scheme built-in to check list containment Claudiu 2009-12-08T19:00:21Z 2009-12-09T17:52:58Z <p>In Python I can do "x in list" to see if the list contains x. Is there any equivalent built-in in Scheme to do this?</p> http://stackoverflow.com/questions/1870895/is-there-a-common-name-for-a-function-that-takes-a-list-of-lists-and-returns-a-si 0 Is there a common name for a function that takes a list of lists and returns a single list containing the contents of those lists? jtolle 2009-12-09T00:38:43Z 2009-12-09T16:33:20Z <p>EDIT: My question was originally "Is there a standard name for a function that flattens a list of lists, but only one level deep?", but Chuck's answer is phrased much closer to what I actually wanted to ask, so I renamed it. All three answers were useful to me, though. Thanks.</p> <p>'flatten' seems to be a well-accepted name for a function that takes a tree and builds a list of atoms however deep they are nested, but what about a function that stops after just one level? So ((1 2) ((3 4) (5 6)) (7 8)) "somethings" to (1 2 (3 4) (5 6) 7 8). Does "something" have a common name across multiple languages/libraries?</p> <p>The answers to this question:</p> <p><a href="http://stackoverflow.com/questions/406121/flattening-a-shallow-list-in-python">http://stackoverflow.com/questions/406121/flattening-a-shallow-list-in-python</a></p> <p>suggest that 'chain' might be a good guess, but is it common enough to be "standard"?</p> http://stackoverflow.com/questions/1872017/why-not-expose-listof-string-in-the-parameters-of-web-service-in-vb-net 2 Why not expose List(Of String) in the parameters of web service in VB.NET? Xinxua 2009-12-09T06:38:56Z 2009-12-09T06:48:33Z <p>The FxCop says in a rule that generic List should not be exposed to the outside world.</p> <p>But I do not understand why and what is the replacement for the generice List?</p> <p>Reference : <a href="http://msdn.microsoft.com/en-in/library/ms182142%28en-us%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-in/library/ms182142%28en-us%29.aspx</a></p> http://stackoverflow.com/questions/1871779/better-palm-pilot-cellphone-replacement-for-tasks -2 Better Palm Pilot / Cellphone replacement for Tasks? [closed] Larry Watanabe 2009-12-09T05:30:29Z 2009-12-09T05:30:29Z <p>I've recently found a new device that is more effective than a cellphone or Palm Pilot for managing my daily tasks.</p> <ul> <li>lightweight</li> <li>no time to powerup</li> <li>easily read in all lighting conditions</li> <li>robust, nearly impossible to break</li> <li>can be used simultaneously while making a call</li> <li>faster data entry and update than palm</li> </ul> <p>It's a few index cards and a bic pen. Anyone found anything better?</p> http://stackoverflow.com/questions/1871319/in-memcached-you-can-put-a-list-as-a-value-can-you-put-a-list-in-beanstalkd 0 In memcached, you can put a List as a value. Can you put a list in beanstalkd? alex 2009-12-09T02:51:51Z 2009-12-09T02:51:51Z <p>Actually, I would like to use this for logging. I want to put a dictionary into beanstalkd.</p> <p>Everytime someone goes into my website, I want to put a dictionary into beanstalkd, and then every night, I want a script that will get all the jobs and stick them in the database.</p> <p>THis will make it fast and easy.</p> http://stackoverflow.com/questions/1868827/deleting-record-in-sharepoint-list 1 Deleting record in sharepoint list manish 2009-12-08T18:12:52Z 2009-12-08T20:45:27Z <p>Hi I want to delete records in list view in sharepoint. This should only be a logical delete the actual data itself should not be deleted . How to accomplish thsi ? Please suggest</p> http://stackoverflow.com/questions/1868857/convert-and-merge-strings-into-a-list-in-python 3 Convert and merge strings into a list in Python joaoc 2009-12-08T18:17:58Z 2009-12-08T18:51:50Z <p>In Python I have four strings that include the formatting of a list:</p> <pre><code>line1 ="['a.b.c','b.c.a','c.d.e']" line2 ="['def','efg']" line3 ="['f']" line4 ="['g']" </code></pre> <p>How do I merge them all so I get a valid Python list such as:</p> <pre><code>SumLine = ['a.b.c','b.c.a','c.d.e','def','efg','f','g'] </code></pre> http://stackoverflow.com/questions/1646021/how-to-association-workflow-on-creating-of-list-definition 1 How to association workflow on creating of list definition Avinash 2009-10-29T19:30:41Z 2009-12-08T18:00:03Z <p>Hi,</p> <p>I have my custom content type, and list definition. Once we create a list from this template, by default I wish to enable "Require content approval for submitted items", "Create major and minor (draft) versions", "Enable scheduling of items in this list " and approval workflow association.</p> <p>My list look as :-</p> <p></p> <p>Also i tried added all view fields which is available in "C:\Program Files\Common Files\microsoft shared\Web Server Extensions\12\TEMPLATE\FEATURES\Publishing" schema. But still does not work.</p> <p>In Sharepoint site, i created a list enable all required property and work flow association save as list temlate. After that i opened manifest file from list template and copied workflow association attribute details. But still does not work. </p> <p>could any one guide me please?</p> <p>Thanks Avinash</p> http://stackoverflow.com/questions/1867457/how-to-check-if-head-is-list-in-f 0 How to check if head is list in F# Razvi 2009-12-08T14:49:38Z 2009-12-08T15:54:57Z <p>Is there a function to check if an object is a list?</p> <p>I did it like this:</p> <pre><code>try let x = unbox&lt;list&lt;obj&gt;&gt;(l) .... with | _ -&gt; ... </code></pre> <p>But i would like to check it with an if or match instead if it is possible.</p> http://stackoverflow.com/questions/1860688/flex4-have-any-idea-how-to-set-the-layout 0 [Flex4] have any idea how to set the layout? Tunied 2009-12-07T15:26:44Z 2009-12-08T14:15:56Z <p>hi all:</p> <p>i want use two button to control list turn left/right one element.</p> <p>but i got some confuse about how to layout those component.</p> <p>i use " <strong>requestedColumnCount="6"</strong> " to set the list width , so in the design model</p> <p>i only know this list can display 6 element , but i don't know how width it will be.</p> <p>so i use the "HGroup" to set the layout , the main code is like this way</p> <pre><code>&lt;s:HGroup x="214" y="216"&gt; &lt;s:Group&gt; &lt;s:layout&gt; &lt;s:VerticalLayout /&gt; &lt;/s:layout&gt; &lt;s:Button label="←" click="button1_clickHandler(event)"/&gt; &lt;/s:Group&gt; &lt;s:Group&gt; &lt;component:SmoothScrollingList dataProvider="{myProvider}" itemRenderer="myitemdrender.FriendPageItemRender" id="friendPageList" mouseDown="friendPageList_mouseDownHandler(event)"&gt; &lt;component:layout&gt; &lt;s:HorizontalLayout requestedColumnCount="6" useVirtualLayout="true"/&gt; &lt;/component:layout&gt; &lt;/component:SmoothScrollingList&gt; &lt;/s:Group&gt; &lt;s:Group&gt; &lt;s:Button label="→" click="button2_clickHandler(event)"/&gt; &lt;/s:Group&gt; &lt;/s:HGroup&gt; </code></pre> <p>you can see i use one HGroup and three group to determine where the component should be.</p> <p>is almost finish , but i still got problem about how to set those two button at the</p> <p>middle of the position?</p> <p>i try to use </p> <pre><code> &lt;s:layout&gt; &lt;s:VerticalLayout horizontalAlign="center"/&gt; &lt;/s:layout&gt; </code></pre> <p>in the first group layout , but seem not working.</p> <p>and my another question is :</p> <p>is this a good way to use so many group and hgroup to determine the position ? is there</p> <p>have any other good way to do it ?</p> <p>thanks a lot.</p> http://stackoverflow.com/questions/1866584/cannot-implicity-convert-a-list 0 Cannot implicity convert a...list Kuruption 2009-12-08T12:14:26Z 2009-12-08T14:14:15Z <p>I have the following classes...</p> <pre><code>public class Order { private Guid id; public Guid ID { get { return id; } set { id = value; } } private List&lt;Items&gt; orderItems; public List&lt;Items&gt; OrderItems { get { return orderItems; } set { orderItems= value; } } } public class Item { private Guid id; public Guid ID { get { return id; } set { id = value; } } private string itemName; public string ItemName { get { return itemName; } set { itemName = value; } } } </code></pre> <p>Then within my application I try the following....</p> <pre><code>ACME.Order newOrder = new ACME.Order(); newOrder.ID = xxx newOrder.OrderItems = new List&lt;OrderItem&gt; { new ACME.OrderItem { ID = xxx ItemName = xxx } } </code></pre> <p>However I get the error "Cannot implicitly convert type <code>'System.Collections.Generic.List&lt;ACME.Item&gt;'</code> to <code>ACME.Item[]</code>. The strange thing as well is that all I don't have an "Add" option on any of my list objects.</p> http://stackoverflow.com/questions/1865614/list-duplicates-on-specific-class 1 List Duplicates on specific Class WtFudgE 2009-12-08T08:52:35Z 2009-12-08T09:36:13Z <p>Hi, I have a list <code>List&lt;T&gt; instances</code></p> <p>where T has a date variable and a string ID. Now I need the list to remove duplicates on the string ID and only keep the latest dates. Anyone know how?</p> <p>I was thinking of creating a new list <code>List&lt;T&gt; final</code> and looping through the instances list. In the loop checking if the list contains an item with the ID and then adding the item or removing the duplicate item with a lower date.</p> <p>However I don't know how to check for a contains on a variable of a class T. Do I have to do this with lambda expression? or overwrite the Equals() of List? Forgot how to do either actually. Any help?</p> <p>Or a better idea is always welcom to ofcourse!</p> <p>Thanks a lot lot lot</p> http://stackoverflow.com/questions/1860552/java-retrieving-amount-of-types-in-list 3 Java - Retrieving amount of types in list Stefan Hendriks 2009-12-07T15:07:13Z 2009-12-07T16:33:02Z <p>I have a list. The list can contain multiple items of the same enum type. </p> <p>Lets say i have an enum : <code>TOY</code> which has values: <code>BALL</code>, <code>DOLL</code>, <code>PLAYSTATION</code>. I want to know how many <code>PLAYSTATION</code> items are in a list with the type <code>TOY</code>. (ie, <code>List&lt;Toy&gt;</code> toys)</p> <p>What is the best possible solution for this? I don't want to keep iterating through the list everytime.</p> http://stackoverflow.com/questions/1858857/comparing-user-input-integers-to-dictionary-values-python 1 Comparing user input integers to dictionary values? (Python) WorkingStudent09 2009-12-07T09:33:27Z 2009-12-07T10:40:42Z <p>Hey everybody,</p> <p>I'm a python noob and I'm trying to write a program that will show a user a list of phone numbers called greater than X times (X input by users). I've got the program to successfully read in the duplicates and count them (the numbers are stored in a dictionary where {phoneNumber : numberOfTimesCalled}), but I need to compare the user input, an integer, with the value in the dictionary and then print the phone numbers that were called X or more times. This is my code thus far:</p> <pre><code> import fileinput dupNumberCount = {} phoneNumLog = list() for line in fileinput.input(['PhoneLog.csv']): phoneNumLog.append(line.split(',')[1]) userInput3 = input("Numbers called greater than X times: ") for i in phoneNumLog: if i not in dupNumberCount: dupNumberCount[i] = 0 dupNumberCount[i] += 1 print(dupNumberCount.values()) userInput = input("So you can view program in command line when program is finished") </code></pre> <p>Basically, I can't figure out how to convert the dictionary values to integers, compare the user input integer to that value, and print out the phone number that corresponds to the dictionary value. Any help GREATLY appreciated!</p> <p>By the way, my dictionary has about 10,000 keys:values that are organized like this:</p> <pre><code>'6627793661': 1, '6724734762': 1, '1908262401': 1, '7510957407': 1 </code></pre> <p>Hopefully I've given enough information for you all to help me out with the program!</p> http://stackoverflow.com/questions/1855317/java-how-do-i-perform-list-operations-with-different-definitions-of-equals 4 Java: How do I perform list operations with different definitions of equals? Yassa 2009-12-06T12:52:23Z 2009-12-06T17:00:35Z <p>Java: How do I perform list operations with different definitions of equals?</p> <p>I have two lists of generic POJOs. I need to perform some set operations on the lists based on different ways of comparing the POJOs within the lists.</p> <p>For example, if my POJO had the following structure:</p> <pre><code>public class GenericPojo { private String id; private String address; private String city; private String country; private String extraDetails; } </code></pre> <p>(with the appropriate getters and setters)</p> <p>Given <code>List1&lt;GenericPojo&gt;</code> and <code>List2&lt;GenericPojo&gt;</code>, how would I find:</p> <p>List1 - List2 (where the <code>GenericPojo</code> classes are equal if just the IDs are equal)</p> <p>Intersect of List1 and List2 (where <code>id</code>, <code>address</code>, <code>city</code>, <code>country</code>, but not <code>extraDetails</code> of <code>GenericPojo</code> are equal)</p> <p>Would two different custom comparator classes be helpful here? Are there any libraries that handle these operations effectively or should I try implementing my own?</p> http://stackoverflow.com/questions/1852277/flex-how-to-get-the-viewport-element-index 0 [Flex] How to get the viewport element index Tunied 2009-12-05T14:01:52Z 2009-12-06T14:03:03Z <p>I use flex4 list:</p> <pre><code> &lt;component:SmoothScrollingList x="200" y="180" dataProvider="{myProvider}" itemRenderer="myitemdrender.FriendPageItemRender" id="friendPageList" mouseDown="friendPageList_mouseDownHandler(event)"&gt; &lt;component:layout&gt; &lt;s:HorizontalLayout requestedColumnCount="6"/&gt; &lt;/component:layout&gt; &lt;/component:SmoothScrollingList&gt; </code></pre> <p>as you can see, there is 6 element can see in the viewport.</p> <p>so how can i know the current viewport element index?</p> <p>ex:</p> <p><code>currentViewPortIndex</code> is : <code>[7][8][9][10][11][12]</code></p> <p>as far as i know , i can only know the the index that i already select by function</p> <p><code>list.selectedIndex</code></p> <p>did flex4 proivde some other function that i can use? </p> <p>thanks.</p> http://stackoverflow.com/questions/1850223/creating-a-generator-expression-from-a-list-in-python 3 Creating a generator expression from a list in python Discodancer 2009-12-04T23:00:35Z 2009-12-05T20:20:27Z <p>What is the best way to do the following in Python:</p> <pre><code>for item in [ x.attr for x in some_list ]: do_something_with(item) </code></pre> <p>This may be a nub question, but isn't the list comprehension generating a new list that we don't need and just taking up memory? Wouldn't it be better if we could make an iterator-like list comprehension.</p> http://stackoverflow.com/questions/1762484/how-to-find-the-position-of-an-element-in-a-list-in-python 1 How to find the position of an element in a list , in Python? alex 2009-11-19T10:53:59Z 2009-12-05T14:56:10Z <pre><code>for s in stocks_list: print s </code></pre> <p>how do I know what "position" s is in? So that I can do <strong>stocks_list[4]</strong> in the future?</p> http://stackoverflow.com/questions/1817300/convert-list-of-derived-class-objects-to-list-of-base-class-objects 1 Convert List<> of derived class objects to List<> of base class objects asdi 2009-11-30T00:31:21Z 2009-12-05T01:50:43Z <p>when we can inherit from base class / interface, why can't we declare a <code>List&lt;&gt;</code> using same classes / interface</p> <pre><code> interface A { } class B : A { } class C : B { } class Test { static void Main(string[] args) { A a = new C(); // OK List&lt;A&gt; listOfA = new List&lt;C&gt;(); // compiler Error } } </code></pre> <p>Is there a way around, Thanks</p> http://stackoverflow.com/questions/1846225/java-priorityqueue-with-fixed-size 2 Java PriorityQueue with fixed size Marco 2009-12-04T10:54:10Z 2009-12-04T18:37:14Z <p>Hi folks,</p> <p>I am calculating a large number of possible resulting combinations of an algortihm. To sort this combinations I rate them with a double value und store them in PriorityQueue. Currently, there are about 200k items in that queue which is pretty much memory intesive. Acutally, I only need lets say the best 1000 or 100 of all items in the list. So I just started to ask myself if there is a way to have a priority queue with a fixed size in Java. I should behave like this: Is the item better than one of the allready stored? If yes, insert it to the according position and throw the element with the least rating away.</p> <p>Does anyone have an idea? Thanks very much again!</p> <p>Marco</p> http://stackoverflow.com/questions/1508975/why-is-list-size0-slower-than-list-isempty-in-java 2 Why is list.size()>0 slower than list.isEmpty() in Java? Sam Rudolph 2009-10-02T11:26:42Z 2009-12-03T21:57:32Z <p>Why is <code>list.size()&gt;0</code> slower than <code>list.isEmpty()</code> in Java? On other words why <code>isEmpty()</code> is preferable over <code>size()&gt;0</code>?</p> <p>When I look at the implementation in <code>ArrayList</code>, then it looks like the speed should be the same:</p> <p><strong>ArrayList.size()</strong></p> <pre><code> /** * Returns the number of elements in this list. * * @return the number of elements in this list */ public int size() { return size; } </code></pre> <p><strong>ArrayList.isEmpty()</strong></p> <pre><code> /** * Returns &lt;tt&gt;true&lt;/tt&gt; if this list contains no elements. * * @return &lt;tt&gt;true&lt;/tt&gt; if this list contains no elements */ public boolean isEmpty() { return size == 0; } </code></pre> <p>If we just write a simple program to get the time take by both the methods, that case <code>size()</code> will take more <code>isEmpty()</code> in all cases, why this so?</p> <p>Here is my TestCode;</p> <pre><code>import java.util.List; import java.util.Vector; public class Main { public static void main(String[] args) { List l=new Vector(); int i=0; for(i=0;i&lt;10000;i++){ l.add(new Integer(i).toString()); } System.out.println(i); Long sTime=System.nanoTime(); l.size(); Long eTime=System.nanoTime(); l.isEmpty(); Long eeTime=System.nanoTime(); System.out.println(eTime-sTime); System.out.println(eeTime-eTime); } } </code></pre> <p>Here <code>eTime-sTime&gt;eeTime-eTime</code> in all cases. Why?</p> http://stackoverflow.com/questions/1842678/c-newbie-initializer-list-question 2 C++: newbie initializer list question jbu 2009-12-03T20:27:30Z 2009-12-03T20:47:51Z <p>Hi,</p> <p>Newbie here. I am looking at company code. </p> <p>It appears that there are NO member variables in class A yet in A's constructor it initializes an object B even though class A does not contain any member variable of type B (or any member variable at all!). </p> <p>I guess I don't understand it enough to even ask a question...so what's going on here!? My intuition is that you need a variable before you even try to initialize it. How is it possible (or what good does it do) to initialize an object without having the object? </p> <p>.h:</p> <pre><code>class A: public B { public: A(bool r = true); virtual ~A; private: } </code></pre> <p>.cpp:</p> <pre><code>A::A(bool r) : B(r ? B::someEnumeration : B::anotherEnumeration) { } A::~A() { } </code></pre> <p>Please help.</p> <p>Thanks, jbu</p> http://stackoverflow.com/questions/1841460/add-tm-to-text-with-jquery 1 Add TM to text with jQuery? Pselus 2009-12-03T17:17:28Z 2009-12-03T18:19:15Z <p>I need a way to go through all the text on my page, including links and other controls and find words that are in a certain list and add the html character entity <code>&amp;trade;</code> (&trade;) to them. I need this to be fast too. The list is held in a javascript array. I've already got code using .each to find all Links on the page with text from that list, but it's noticeably slow and I don't like that.</p> <p>Any better, more efficient ways to do this?</p> <p><strong><em>EDIT</em></strong></p> <p>People are suggesting other alternatives (server-side, css, etc.) We can't use those because these words are in URL's all over the site. We would mess up our URL's all over the site. We are using DotNetNuke to do this and the client just told us today that every time their products appear on the entire site (including links) they want them to be in all caps and have TM appended. If we change the products in the database, all the links suddenly have "trade" appended to the end of them. The nature of DNN says that we can't do this server-side. We could go through and manually change it in each page...but the site is 1,900+ pages...... SO! Client side is the route we want to go.</p> http://stackoverflow.com/questions/1840615/list-folders-and-subfolders-from-a-directory-in-excel-with-hyperlinks -1 List folders and subfolders from a directory in Excel with hyperlinks? Chris 2009-12-03T15:26:08Z 2009-12-03T15:32:43Z <p>Hi,</p> <p>I am looking for a vb script that would list the folders and subfolders from a directory, and output it to excel so that i could open the folders via hyperlinks.</p> <p>I am trying to create a sort of directory index that collates about 100 parent folders from 2 directories located on 2 different servers. Some parent folders have up to 20 subfolders and then a further 5 folders in each subfolder.</p> <p>Ideally the layout would be like this.</p> <pre><code>Parent Folder Subdirectory Folder1 Sub1 Folder Folder Sub2 Folder Folder Sub3 Folder Folder Folder2 Sub1 Folder </code></pre> <p>etc etc.</p> <p>I have no knowledge of visual basic programming, so if anyone could help you would save me a great deal of time from creating this index manually.</p> <p>Thanks</p> <p>Chris</p> http://stackoverflow.com/questions/1838858/linq-variable-to-list-of-string-without-using-column-names 1 LINQ variable to list of string without using column names? Zan 2009-12-03T09:51:09Z 2009-12-03T12:39:22Z <p>In an C# ASP.Net MVC project, I'm trying to make a List&lt;string> from a LINQ variable.</p> <p>Now this might be a pretty basic thing, but I just cannot get that to work without using the actual column names for the data in that variable. The thing is that in the interests of trying to make the program as dynamic as possible, I'm leaving it up to a stored procedure to get the data out. There can be any amount of any which way named columns depending on where the data is fetched from. All I care about is taking all of their values into a List&lt;string>, so that I can compare user-input values with them in program.</p> <p>Pointing to the columns by their names in the code means I'd have to make dozens of overloaded methods that all just basically do the same thing. Below is false non-functioning code. But it should open up the idea of what I mean.</p> <pre> // call for stored procedure var courses = db.spFetchCourseInformation().ToList(); // if the data fails a check on a single row, it will not pass the check bool passed = true; foreach (var i in courses) { // each row should be cast into a list of string, which can then be validated // on a row-by-row basis List courseRow = new List(); courseRow = courses[i]; // yes, obviously this is wrong syntax int matches = 0; foreach (string k in courseRow) { if (validator.checkMatch(courseRow[k].ToString())) { matches++; } } if (matches == 0) { passed = false; break; } } </pre> <p>Now below is an example of how I currently have to do it because I need to use the names for the columns</p> <pre> for (int i = 0; i &lt; courses.Count; i++) { int matches = 0; if (validator.checkMatch(courses[i].Name)) matches++; if (validator.checkMatch(courses[i].RandomOtherColumn)) matches++; if (validator.checkMatch(courses[i].RandomThirdColumn)) matches++; if (validator.checkMatch(courses[i].RandomFourthColumn)) matches++; /* etc... * etc... * you get the point * and one of these for each and every possible variation from the stored procedure, NOT good practice * */ </pre> <p>Thanks for help!</p> http://stackoverflow.com/questions/1816988/get-byte-size-of-listt 0 Get byte size of List<T> Shalan 2009-11-29T22:22:36Z 2009-12-03T11:17:16Z <p>Hi,</p> <p>Silly question, but in a winforms app Im currently working on, I would like to get the amount of bytes allocated/used by a <code>List&lt;[SomeObject]&gt;</code> held in memory (for statistical purposes). Is this possible? I have searched thru the possible options, but there is obviously no <code>myList.GetTotalBytes()</code> method.</p> http://stackoverflow.com/questions/1838687/c-can-a-listmyclass-be-seemlessly-cast-to-a-listinterface-or-similar 0 C# - Can a List<MyClass> be seemlessly cast to a List<Interface> or similar? GenericTypeTea 2009-12-03T09:18:34Z 2009-12-03T09:43:29Z <p>I have a <code>DataSource</code> in my control which is always a <code>List&lt;T&gt;</code> where <code>T</code> has to inherit from <code>IEntity</code>.</p> <pre><code>public class MyClass&lt;T&gt; where T : IEntity { public List&lt;T&gt; DataSource { get; set; } } </code></pre> <p>Now, obviously you can't cast a <code>List&lt;T&gt;</code> to a <code>List&lt;IEntity&gt;</code> doing the following:</p> <pre><code>List&lt;IEntity&gt; wontWork = (List&lt;IEntity&gt;)this.DataSource; </code></pre> <p>How can I get the DataSource as a List of <code>IEntity</code>, whilst still being able to add and remove items from the <code>DataSource</code>? I.e. I could do the following, but removing from the List it returns would not remove from the DataSource:</p> <pre><code>public List&lt;TOut&gt; GetDataSourceCopyAsUnderlyingType&lt;TOut&gt;() { if (this.DataSource == null) { return new List&lt;TOut&gt;(); } else { // Get the list and the enumerator IList list = (IList)this.DataSource; IEnumerator enumerator = list.GetEnumerator(); // Build the target list List&lt;TOut&gt; targetList = new List&lt;TOut&gt;(); int i = 0; while (enumerator.MoveNext()) { TOut entity = (TOut)list[i]; targetList.Add(entity); i++; } return targetList; } } </code></pre> <p>Basically, I need some way of doing the following:</p> <pre><code>List&lt;IEntity&gt; interfaceList = this.GetDataSourceAsAnotherType&lt;IEntity&gt;(); int dataSourceCount = this.DataSource.Count; // Equals 5 int interfaceCount = interfaceList.Count; // Equals 5 interfaceList.RemoveAt(0); int dataSourceCount = this.DataSource.Count; // Equals 4 int interfaceCount = interfaceList.Count; // Equals 4 </code></pre> <p>And just to add, I don't mind if it means I've got to use a different type instead of a List.</p> <p><strong>EDIT</strong>: Sorry, forgot to say I'm using .Net2.0 and cannot move to .Net 3.5.</p>