コード例 #1
0
ファイル: PType.Base.cs プロジェクト: PenguinF/sandra-three
 public string GetLocalizedTypeErrorAtPropertyKeyMessage(Localizer localizer, string actualValueString, string propertyKey)
 => PTypeErrorBuilder.GetLocalizedTypeErrorSomewhereMessage(
     localizer,
     LocalizedExpectedTypeDescription(localizer),
     actualValueString,
     PTypeErrorBuilder.GetLocatedAtPropertyKeyMessage(localizer, propertyKey));
コード例 #2
0
ファイル: PType.Base.cs プロジェクト: PenguinF/sandra-three
 public string GetLocalizedTypeErrorAtItemIndexMessage(Localizer localizer, string actualValueString, int itemIndex)
 => PTypeErrorBuilder.GetLocalizedTypeErrorSomewhereMessage(
     localizer,
     LocalizedExpectedTypeDescription(localizer),
     actualValueString,
     PTypeErrorBuilder.GetLocatedAtItemIndexMessage(localizer, itemIndex));
コード例 #3
0
ファイル: PType.Base.cs プロジェクト: PenguinF/sandra-three
 public string GetLocalizedTypeErrorMessage(Localizer localizer, string actualValueString)
 => PTypeErrorBuilder.GetLocalizedTypeErrorMessage(
     localizer,
     LocalizedExpectedTypeDescription(localizer),
     actualValueString);