暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

RiderPathUtil.cs 300B

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. }