FixedLengthString Constructor
Namespace: DevCase.Core.DataProcessing.CommonAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public FixedLengthString(
string value,
int fixedLength,
char paddingChar = ''
)
Public Sub New (
value As String,
fixedLength As Integer,
Optional paddingChar As Char = ""C
)
Dim value As String
Dim fixedLength As Integer
Dim paddingChar As Char
Dim instance As New FixedLengthString(value, fixedLength,
paddingChar)
public:
FixedLengthString(
String^ value,
int fixedLength,
wchar_t paddingChar = L''
)
new :
value : string *
fixedLength : int *
?paddingChar : char
(* Defaults:
let _paddingChar = defaultArg paddingChar ''
*)
-> FixedLengthString
No code example is currently available or this language may not be supported.
Parameters
- value String
-
The string value.
- fixedLength Int32
-
The fixed string length.
- paddingChar Char (Optional)
-
The padding character thath fills the string.