ashokgelal
ashokgelal

Reputation: 81568

What is the best way of implementing tagging system in C# (no database; no asp.net)?

I found a couple of examples on implementing tagging systems with a database backend but not any on implementing it using just list and dictionaries. Can anyone give me a guide on how to implement this or point me to some online articles?

Upvotes: 2

Views: 783

Answers (2)

Ravi Gadag
Ravi Gadag

Reputation: 15881

if i am not wrong, List and Dictionary are in memory objects, you need to store tags in in non-volatile storage. so that you can reuse them. (either it may be File, Database, or even u can use xml ) .

Upvotes: 0

Jason Dam
Jason Dam

Reputation: 400

I think you either need a database backend or you'll have to come up with a way to store it yourself.

The things that it's tagging, how are they stored?

Upvotes: 1

Related Questions