I see you that you already have multiple fields in your class that you use to hold the variables. In that case, what you are doing is fine.
Otherwise, you can have 1 HashTable (maybe add in the C# indexor as a twist) to hold all of them, and your loop will end up like this:
foreach (string param in params.Split(';'))
{
string[] parts = param.Split('=');
string key = parts[0].Trim().ToLower();
string value = parts[1].Trim();
MyHashTable[key] = value;
}
Now, to strong
The problem with this approach is that you should only have 1 type of value. For example, if your classparam list can contain both string and int types, it makes the code messier, especially you will have need to cast it in your property (perform error checking and validation and stuff.
I personally would stick with what you will already haveto do this somewhere anyways)
public int param1{
get{ return (int) MyHashTable["param1"]; }
}
public string param2{
get{ return (string) MyHashTable["param2"];}
}
.
