説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

BuildPathDictionary.cs 475B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using Codice.Utils;
  4. namespace Unity.PlasticSCM.Editor.AssetsOverlays.Cache
  5. {
  6. internal static class BuildPathDictionary
  7. {
  8. internal static Dictionary<string, T> ForPlatform<T>()
  9. {
  10. if (PlatformIdentifier.IsWindows())
  11. return new Dictionary<string, T>(
  12. StringComparer.OrdinalIgnoreCase);
  13. return new Dictionary<string, T>();
  14. }
  15. }
  16. }