We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42cad4d commit d29c280Copy full SHA for d29c280
WinUI3Localizer/LocalizerBuilder.cs
@@ -203,7 +203,7 @@ private static LanguageDictionary.Item CreateLanguageDictionaryItem(StringResour
203
204
internal static LanguageDictionary.Item CreateLanguageDictionaryItem(string name, string value)
205
{
206
- (string Uid, string DependencyPropertyName) = name.IndexOf(".") is int firstSeparatorIndex && firstSeparatorIndex > 1
+ (string Uid, string DependencyPropertyName) = name.IndexOf('.') is int firstSeparatorIndex && firstSeparatorIndex > 1
207
? (name[..firstSeparatorIndex], string.Concat(name.AsSpan(firstSeparatorIndex + 1), "Property"))
208
: (name, string.Empty);
209
return new LanguageDictionary.Item(
0 commit comments