Skip to content

AhmedTarekHasan/HierarchicalData

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Hierarchical Tree Form Data Structure in .NET C#

Design a data structure for Hierarchical Tree Form data and its related operations in .NET C#


Sometimes you find yourself in a need to deal with Hierarchical Tree Form data. In simple words, this is data presented into parent-child nodes.

In such situations, you might sometimes struggle with the complexity of the implementation especially when dealing with a huge amount of data.

In this article, I would provide you with one of the possible designs for such cases. However, you need to keep in mind that, as usual, having a generic design could provide abstracted capabilities but it might lack specific enhancements for specific scenarios.

Therefore, I recommend that you deal with the design you would find in this article as a mind opener. You would need to study it, learn from it, get some ideas from it, and finally adapt it to your own needs.


If you are interested into reading more about this topic, you can read the rest of the article.


If you want to support me:

▶ Subscribe to Medium using my referral link
▶ Subscribe to Medium Newsletter
▶ Subscribe to LinkedIn Newsletter
▶ Follow me on Medium
▶ Follow me on Twitter
▶ Follow me on LinkedIn


Authors: