Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. Trouble with CollectionBase

Trouble with CollectionBase

Scheduled Pinned Locked Moved C#
csharphelpquestion
3 Posts 3 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • L Offline
    L Offline
    Lost User
    wrote on last edited by
    #1

    I created a collection class using the .NET help files, but when I add objects to the collection, it appears as though the each new object copies itself throughout the collection--all objects in the collection become equal to the new added object. Anyone run into this before? Here's a snip of code to give you a idea of what I'm doing... namespace NatesKentuckyRook.Classes { public class RookCards : System.Collections.CollectionBase { // Constructors public RookCards() { } // Functions public void Reset() { List.Clear(); } public void AddCard(RookCard Card) { List.Add(Card); } } }

    J T 2 Replies Last reply
    0
    • L Lost User

      I created a collection class using the .NET help files, but when I add objects to the collection, it appears as though the each new object copies itself throughout the collection--all objects in the collection become equal to the new added object. Anyone run into this before? Here's a snip of code to give you a idea of what I'm doing... namespace NatesKentuckyRook.Classes { public class RookCards : System.Collections.CollectionBase { // Constructors public RookCards() { } // Functions public void Reset() { List.Clear(); } public void AddCard(RookCard Card) { List.Add(Card); } } }

      J Offline
      J Offline
      James T Johnson
      wrote on last edited by
      #2

      Take a look at CollGen2 on GotDotNet. It will create a collection for you using the type you specify. As to your problem I've not seen it before. James Sonork: Hasaki "I left there in the morning with their God tucked underneath my arm their half-assed smiles and the book of rules. So I asked this God a question and by way of firm reply, He said - I'm not the kind you have to wind up on Sundays." "Wind Up" from Aqualung, Jethro Tull 1971

      1 Reply Last reply
      0
      • L Lost User

        I created a collection class using the .NET help files, but when I add objects to the collection, it appears as though the each new object copies itself throughout the collection--all objects in the collection become equal to the new added object. Anyone run into this before? Here's a snip of code to give you a idea of what I'm doing... namespace NatesKentuckyRook.Classes { public class RookCards : System.Collections.CollectionBase { // Constructors public RookCards() { } // Functions public void Reset() { List.Clear(); } public void AddCard(RookCard Card) { List.Add(Card); } } }

        T Offline
        T Offline
        Tom Archer
        wrote on last edited by
        #3

        There's nothing in the code you posted that would cause the problem you're describing. Can you post a sample app - especially the client code? Cheers, Tom Archer Author, Inside C#

        1 Reply Last reply
        0
        Reply
        • Reply as topic
        Log in to reply
        • Oldest to Newest
        • Newest to Oldest
        • Most Votes


        • Login

        • Don't have an account? Register

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • World
        • Users
        • Groups