Candy.Client.Models.JsonFileStateRepository.InstalledApplicationConverter.IsCandy C# (CSharp) 메소드

IsCandy() 개인적인 정적인 메소드

private static IsCandy ( string installedPath ) : bool
installedPath string
리턴 bool
            private static bool IsCandy(string installedPath)
            {
                var fileName = Path.GetFileNameWithoutExtension(installedPath);
                return String.Equals(fileName, "Candy", StringComparison.OrdinalIgnoreCase);
            }
        }
JsonFileStateRepository.InstalledApplicationConverter