Hello, i would like to ask if i can retrieve a value by a key name ignoring the case?
In source engine KeyValues class, this code:
KeyValues *pKV = new KeyValues("Test");
pKV->SetInt("Apple", 5);
Msg("%d %d", pKV->GetInt("apple"), pKV->GetInt("APPLE"));
it prints "5 5", which means the cases are ignored