clean up and use right param rather than substring

This commit is contained in:
Hermit Dave 2018-05-17 17:54:28 +01:00
Родитель 50403edc9e
Коммит e5e5f2b912
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -266,7 +266,7 @@ namespace Microsoft.Toolkit.Uwp.PlatformSpecificAnalyzer
KindOfCheck = "IsTypePresent"
};
}
else //if (target.Kind != SymbolKind.NamedType)
else
{
var g = new HowToGuard
{

Просмотреть файл

@ -42,7 +42,7 @@ namespace Microsoft.Toolkit.Uwp.PlatformSpecificAnalyzer
if (parts.Length == 2)
{
Name = parts[0];
ParameterCount = int.Parse(s.Substring(s.Length - 1));
ParameterCount = int.Parse(parts[1]);
}
else
{