|
-
Apr 14th, 2010, 02:50 PM
#1
Thread Starter
Frenzied Member
Using a switch Statment with 30 Conditionals
I am in the final stages of creating an MP4 tag parser in .Net. For those who have experience with tagging music you would be aware that there are an average of 30 or so tags. If tested out different types of loops and it seems that a switch statement with Const values seems to be the way to go with regard to catching the tags in binary.
The switch allows me to search the binary without the need to know which order the tags are stored or if there are some not present but I wonder if anyone would be against using a switch statement for so many conditionals.
Any insight is much appreciated.
-
Apr 14th, 2010, 02:58 PM
#2
Re: Using a switch Statment with 30 Conditionals
No... that's precisely the best use for a switch statement... certainly better than the alternative If statements...
-tg
-
Apr 14th, 2010, 03:21 PM
#3
Thread Starter
Frenzied Member
Re: Using a switch Statment with 30 Conditionals
Cool, now to the crooks, what about if this switch resides in a recursive function?
-
Apr 14th, 2010, 03:43 PM
#4
Thread Starter
Frenzied Member
Re: Using a switch Statment with 30 Conditionals
My second thought was to do this:
1 Create an object that holds the "binary tag name", "Data", "Property Name".
2 Create a list of these totaling the amount of tags known adding the tag name and property name.
3 When parsing use linq to match the found name with the object.binarytagname and add the data
4 reflect into the property and add the data...
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|