Posts by Matheus Lacerda Bezerra • 1 point
2 posts
-
0
votes1
answer61
viewsQ: An alternative to Strings?
Several things in the project have a table with possible names (strings). But I don’t want to use strings to make comparisons for various reasons (case-sensitive, typo, name table changes, etc). So…
-
-1
votes1
answer76
viewsQ: Data structure in C# for neighbor-nearest?
Currently I’m putting all positions in an ordered vector. When I want the nearest neighbor, step through the whole vector. I want to know if there’s a structure in any namespace from C# to this.…