Convert.TryToHexStringLower 方法    
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将 8 位无符号整数的范围转换为其用小写十六进制字符编码的等效范围表示形式。
public:
 static bool TryToHexStringLower(ReadOnlySpan<System::Byte> source, Span<char> destination, [Runtime::InteropServices::Out] int % charsWritten);
	public static bool TryToHexStringLower(ReadOnlySpan<byte> source, Span<char> destination, out int charsWritten);
	static member TryToHexStringLower : ReadOnlySpan<byte> * Span<char> * int -> bool
	Public Shared Function TryToHexStringLower (source As ReadOnlySpan(Of Byte), destination As Span(Of Char), ByRef charsWritten As Integer) As Boolean
	参数
- source
 - ReadOnlySpan<Byte>
 
8 位无符号整数的跨度。
- charsWritten
 - Int32
 
此方法返回时,包含以 destination编写的字符数。
返回
如果转换成功,true;否则,false。