Performance question
Hello my friends,
Do you think it is more fast to :
1. Check if x key exist in a dictionary
2. Add x key with it's value if it does not already exist
OR
1. try{ Add x key with it's value } catch{}
(because Add x key with it's value
will return an error if the key already exist).
Thanks c: