Без опису
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

1234567891011121314
  1. using System.IO;
  2. namespace Rider.Editor.Util
  3. {
  4. internal static class RiderPathUtil
  5. {
  6. public static bool IsRiderDevEditor(string editorPath)
  7. {
  8. if (editorPath == null)
  9. return false;
  10. return "rider-dev".Equals(Path.GetFileNameWithoutExtension(editorPath));
  11. }
  12. }
  13. }