TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Ken
NA
110
0
Best way to store these data?
Jan 30 2011 6:50 PM
I have a system of toggles in my program. A user can define a toggle to contain accepted and unaccepted tags. I was trying to think of an efficient way to store those. So far the best I came up with is a three dimensional array, so I could do:
toggles[0,0,0] = "allowedtag1";
toggles[0,0,1] = "allowedtag2";
toggles[0,1,0] = "badtag1";
toggles[0,1,1] = "badtag2";
What would be the best way to store that, or is that really the way to go? Thanks :)
Reply
Answers (
3
)
[SOLVED]GridView TypeCast
Help with increments please.