vote up 0 vote down star

I am trying to figure out what type of structure or container I should use for a quick project. I need to have an unknown number of sets that will be entered from the GUI (each one will have a name, description, unique ID, priority, and boolean for included). Each set will have an unknown number of strings added to it (also from the GUI). After all of the information has been entered, it will be written out to text files where the name of the set is the name of the folder and one text file in that folder will contain all of the strings associated with that set.

I tried creating a dataset with two related tables, but I couldn't seem to programmatically add the rows to the tables and get the sets to display in my datagridview. Now I'm back to trying to find another way to save the sets in memory and display them on the GUI before saving them to disk.

What would you use?

flag

By "set" do you mean that the data structure must have the mathematical properties of a set? That is "not ordered", "no duplicates" and so on? Or can it just be a list, which is ordered and can have duplicates? – Eric Lippert Nov 6 at 15:10
The set is ordered, with no duplicates. The strings are not ordered. – Theresa Nov 6 at 15:56

5 Answers

vote up 1 vote down check

How about something like this...

public class TheresasSet {
    public string Name { get; set }
    public string Description { get; set; }
    public int ID { get; set; }
    public int Priority { get; set; }
    public bool Included { get; set; }
    public List<string> StringData { get; private set; }

    public TheresasSet() {
        StringData = new List<string>();
    }
}
link|flag
vote up 0 vote down

A collection object.

link|flag
vote up 0 vote down

You can:

  1. Create a class named for example Set, which has name, description, unique ID, priority, and boolean for included as properties.
  2. Add an extra property to the class, of type List<string>, to store the strings added dinamically.
  3. Have a List<Set> to store the sets.
link|flag
vote up 0 vote down

Generally I'd recommend using classes, structs should be used when the instance size is less than 16 bytes, which this will not be. Anything bigger and you'll start suffering a minor slow down in performance.

If you're having trouble displaying information you could look at overriding the ToString() method, or provide more details on what's not working in the DataGridView.

link|flag
I ended up going back to the DataSet/Datagridviews option. I got that working. – Theresa Nov 8 at 16:55
vote up 2 vote down

I would just use a class:

 public class Item
    {
        public string Name { get; set; }
        public string Description { get; set; }
        public int ID { get; set; }
        public int Priority { get; set; }
        public bool Included { get; set; }
        public IList<string> Data { get; set; }
    }

for the UI you would have a IList<Item>

EDIT:

If there has to be no duplicates you can put the set into a Dictionary where the key is the ID field and the value is the Item object. This list will not be ordered, but you can write your own sorting method :

IDictionary<int, Item> listOfData;
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.