Ви не можете вибрати більше 25 тем
Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
1234567891011121314 |
- using System.IO;
-
- namespace Rider.Editor.Util
- {
- internal static class RiderPathUtil
- {
- public static bool IsRiderDevEditor(string editorPath)
- {
- if (editorPath == null)
- return false;
- return "rider-dev".Equals(Path.GetFileNameWithoutExtension(editorPath));
- }
- }
- }
|