CapyKit/Documentation/Help/M_CapyKit_Helpers_KeyHelper_FormatKey.md

39 lines
876 B
Markdown
Raw Normal View History

2025-02-14 04:52:55 -06:00
# FormatKey Method
Formats the given hex string into the desired number of parts (separated by dashes).
## Definition
**Namespace:** <a href="N_CapyKit_Helpers.md">CapyKit.Helpers</a>
**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.4
**C#**
``` C#
private string FormatKey(
string hex
)
```
**F#**
``` F#
private member FormatKey :
hex : string -> string
```
#### Parameters
<dl><dt>  <a href="https://learn.microsoft.com/dotnet/api/system.string" target="_blank" rel="noopener noreferrer">String</a></dt><dd>The hexadecimal.</dd></dl>
#### Return Value
<a href="https://learn.microsoft.com/dotnet/api/system.string" target="_blank" rel="noopener noreferrer">String</a>
The formatted key.
## See Also
#### Reference
<a href="T_CapyKit_Helpers_KeyHelper.md">KeyHelper Class</a>
<a href="N_CapyKit_Helpers.md">CapyKit.Helpers Namespace</a>