Performance – using Guid object or Guid string as Key
The Guid should be quicker, as the comparison is simpler – just a few direct bytes. The string involves a dereference and lots more work. Of course – you could profile ;-p Evidence: Searching for 7f9b349f-f36f-94de-ad96-04279ddf6ecf As guid: 466; -1018643328 As string: 512; -1018643328 Searching for 870ba465-08f2-c872-cfc9-b3cc1ffa09de As guid: 470; 1047183104 As string: 589; 1047183104 … Read more