I have the following code:

   public static class ScraperMasterUriDetails
    {
        public static Dictionary<Guid, string> MasterUriDetails;

    }

However I've decided that I need to add an integer to the dictionary Dictionary<ScraperMasterUriDetails>, so I thought I'd add properties and a few parameters to the constructor.

But, you can't do that in C#. How do I implement what I'm trying to implement?

EDIT:

A more experienced member edited my post, so I'll leave it how it is. I don't care about using a dictionary (was just the right thing to use at the time)

Essentially I just want a list of three types of data in a structure manner, except I always want to refer to once instance of the class which stores the values, hence static. Now I've always done List of(T) like:

public class WebsiteTitles
{
    public string WebsiteId { get; set; }
    public string Keywords { get; set; }

    public WebsiteTitles(string websiteguid, string keywords)
    {
        WebsiteId = websiteguid;
        Keywords = keywords;
    }

    public WebsiteTitles()
    {
    }
}

And then done the following

           List<WebsiteTitles> _siteTitles = new List<WebsiteTitles>();
            _siteTitles.Add(new WebsiteTitles("blah", "keyword")); 

However in this scenario I want like something similar to the above, but static (don't want to be creating instances etc. I really appreciate all the suggestions, hence why I edited my post to provide more information.

As a note, I'll probably want to use LINQ to extract some records e.g. get record where guid == guid etc. That's about all I'll use it for.

link|improve this question

1  
Be very mindful about threading issues here. – Marc Gravell Aug 7 '10 at 22:18
feedback

3 Answers

up vote 2 down vote accepted

Singleton.

http://en.wikipedia.org/wiki/Singleton_pattern

link|improve this answer
@Merl: I'm not big on the design-patterns-for-every-occasion bandwagon, myself, but this seems like a pretty obvious case. Why wouldn't it be a good idea here? – Steven Sudit Aug 7 '10 at 21:45
+1, @Merlyn: singleton is good solution for the OP's needs. – Markos Aug 7 '10 at 21:48
@Steven Sudit, Markos: Read those articles. Singletons are overused, and there are arguments against using them, even when the more advanced features could prove useful. The simplest reason, for this particular case, is that a singleton is a static variable, and is usually implemented that way. For this case, slapping a silly name on a static variable is just obfuscating what he is trying to do. – Merlyn Morgan-Graham Aug 7 '10 at 21:50
@Ash: If you make it more clear exactly why you need parameters, and what you need them for (with some example sample pseudo code, even if it is broken), then we can give you a better idea of whether a singleton is the simplest implementation for your case. – Merlyn Morgan-Graham Aug 7 '10 at 21:53
show 8 more comments
feedback

A static constructor is called automatically, not by you. There is no way for it to know what parameters to pass in.

So, either

  1. Set the properties to values in the constructor
  2. Set them later with another method you add e.g. Initialize(int a, ...)
link|improve this answer
+1. If you're simply constructing MasterUriDetails, use a static constructor. It makes it obvious what you are trying to do. – Merlyn Morgan-Graham Aug 7 '10 at 21:46
feedback

Why not just use the collection initializer syntax? http://msdn.microsoft.com/en-us/library/bb384062.aspx

public static class ScraperMasterUriDetails
{
    public static List<WebsiteTitles> MasterUriDetails = new List<WebsiteTitles>()
    {
        new WebsiteTitles()
        {
            WebsiteId = Guid.NewGuid().ToString(),
            Keywords = "programming, fish, popsicles, nihilism",
        },
    };
}

If you need to look up a website by ID, then by all means use a dictionary:

public static class ScraperMasterUriDetails
{
    public static Dictionary<Guid, string> MasterUriDetails = new Dictionary<Guid, string>()
    {
        { Guid.NewGuid(), "programming, fish, popsicles, nihilism" },
        { new Guid("abcdef" /* etc */), "ankles, sprocket, glucose, the moon" },
    };
}

Before Edit:

Please note that a dictionary isn't a list.

However, you can of course add values to a static member at any time. It doesn't have to be defined at compile time:

public class SomeOtherClass
{
    public void SomeNonStaticMethod(Guid key, string subUrl)
    {
        ScraperMasterUriDetails.MasterUriDetails[key] = "http://www.helpmeimstuckinsideasadnsserver.com/" + subUrl;
    }
}

If you need more information than this, please describe the structure you used to "add an int". If you are having problems defining that structure, please explain what you want your dictionary to do. You pass it a GUID, and get back what information?

link|improve this answer
Thanks for the reply, as mentioned above my posted was edited, and it reads that I really want to use a dictionary which isn't the case. I just want something similar to my edited example above, but in a static context. Many thanks for the reply. – Ash Aug 7 '10 at 22:59
Hi, thanks for the example again, I can't use initializers as the values I want to store are generated after processing within a class. Also the WebsiteTitle class was just an example of how I declare a custom list, I'm still only using ScraperMasterUriDetails and wanting to store a Guid, string and int. – Ash Aug 7 '10 at 23:24
@Ash: You can use a static constructor, or just have your related class (that has the .Add() code) modify the static variable directly. Static variable doesn't mean immutable, it just means that it isn't bound to a specific instance. – Merlyn Morgan-Graham Aug 8 '10 at 22:04
feedback

Your Answer

 
or
required, but never shown

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