Tagged Questions
0
votes
2answers
74 views
Does .Net / C#'s speed degrade with increased field depth?
Is there any execution speed difference between the following two lines of code? I cannot tell from looking at the IL:
int x = MainObject.Field1;
int x = MainObject.Public.Fields.Field1;
I know ...
0
votes
2answers
1k views
Calculate depth in a parent-child model in MySQL
How do I calculate a node's depth in a parent-child model under MySQL?
I'll need the depth to, among other things, create the indent in my list (coded with PHP).