About 173 results
Open links in new tab
  1. ArrayList of Struct - social.msdn.microsoft.com

    Sep 2, 2008 · The ArrayList accepts ANY object so you could end up with a mix of thing on the list, this might be the "grief" CNCarson was speaking of. Last, a struct is a value type, so as …

  2. Garbage Collection for ArrayList - social.msdn.microsoft.com

    May 22, 2008 · The second thread runs from time to time and checks that ArrayList in memory, gets all the obejcts that are there in the ArrayList at that time, inserts data in to DB and finally …

  3. Converting an arraylist to string - social.msdn.microsoft.com

    Oct 7, 2021 · i tried the ToString () command but it returned back "System.Collections.ArrayList+SyncArrayList" for whichever array i try for. is there any way i …

  4. how to insert from UI into arraylist - social.msdn.microsoft.com

    Oct 7, 2021 · User-124880144 posted I am trying to bind to listbox but everything i am getting in a single line. because resume has larger text it looks bad while binding to textbox.what is the …

  5. Removing from an ArrayList while enumerating

    Jan 9, 2008 · I get this error: "enumeration operation may not execute" when trying to remove elements form an Arraylist,how do i do this correctly?

  6. Index was out of range. Must be non-negative and less than the …

    Must be non-negative and less than the size of the collection. Parameter name: index System.ArgumentOutOfRangeException: at System.Collections.ArrayList.get_Item (Int32 …

  7. Error: ExecuteReader requires an open and available Connection.

    Aug 29, 2008 · Hi Everyone; I am running the following program: using System; using System.Collections; using System.ComponentModel; using System.Data; using …

  8. How to send a class through a named pipe

    Nov 1, 2012 · Now, I need to be able to send a class, or an object. I have read somewhere that Serialization is the way to go. So, on the client, I have: <Serializable ()> _ Public Class cTest …

  9. c++/cli MarshalByRefObject - social.msdn.microsoft.com

    Jun 1, 2007 · I'm having an issue with returning data which is passed by ref. I've tried using [In, Out] before the parameters that need to return data. One of my functions received a blank …

  10. Retrieve Excel cell values from every row and cell in a WorkSheet

    May 22, 2014 · Good Afternoon,I am utilizing the Open XML 2.0 to retrieve cell values with in a workbook. In my code, I am attempting to retrieve the cell values from every row and every …