Exemple #1
0
 public static string HNlI(this FormatStringUtilitiesHandle <byte?> hnd)
 => Environment.NewLine + H(hnd: hnd).IndentLines();
Exemple #2
0
 public static string G(this FormatStringUtilitiesHandle <ConstructorInfo> hnd, IFormatProvider formatProvider)
 => hnd.Object is null?GetNullValueText(formatProvider : formatProvider) : P_GeneralForMemberInfo(memberInfo: hnd.Object, overrideMemberInfoText: GetConstructorSignatureText(constructor: hnd.Object), formatProvider: formatProvider);
Exemple #3
0
 public static string H(this FormatStringUtilitiesHandle <byte?> hnd)
 => hnd.Object.HasValue ? "0x" + hnd.Object.Value.ToString("x2", provider: CultureInfo.InvariantCulture) : FormatStringUtilitiesCoreL0.GetNullValueText();
Exemple #4
0
 public static string GNLI2(this FormatStringUtilitiesHandle <ConstructorInfo> hnd, IFormatProvider formatProvider)
 => Environment.NewLine + G(hnd: hnd, formatProvider: formatProvider).IndentLines2();