DSAGNet

Coding conventions and Unity best practices

With a fair bit on the worst practices too

Particular Reality DevLog

@bug why does type information have to be in the name anyhow?

Are you using a language where IDE support for types isn't implemented?

Hungarian Notation, FWIW, would have you do:

u2NumberOfCats

#Types #HungarianNotation

Do you use #HungarianNotation with your #Typescript? Or even your #JavaScript?

ie:
iHamburgerOrder or tHamburgerOrder
versus
HamburgerOrderInterface
HamburgerOrderInterface

Yes, how else will people know its an Interface
14.3%
No, just name it right and rely on the editor
85.7%
Poll ended at .

Identifier Metadata is fine, as long as you're not replicating your type system, if the scope of your variable is so large you cant easily infer it's definition, maybe your functions are too big?

#HungarianNotation