Prefill 2.1.0
See the version list below for details.
dotnet add package Prefill --version 2.1.0
NuGet\Install-Package Prefill -Version 2.1.0
<PackageReference Include="Prefill" Version="2.1.0" />
paket add Prefill --version 2.1.0
#r "nuget: Prefill, 2.1.0"
// Install Prefill as a Cake Addin #addin nuget:?package=Prefill&version=2.1.0 // Install Prefill as a Cake Tool #tool nuget:?package=Prefill&version=2.1.0
PreFill
PreFill is a project to align horizontally listed output values to right side in order to increase their legibility.
Description
PreFill has methods to fill desired value preceeding of values to align them. Empty character, letter or number can be used to make different lenghted values align right. Supported data types: (sbyte, byte, int, uint, long, ulong, string)
PreFill is optimized for cpu-intense applications.
Listed Methods
PreFilledCustom(long number, byte maxNumberOfDigit, string text = "")
PreFilledCustom(long? number, byte maxNumberOfDigit, string text = "")
PreFilledCustom(long number, byte maxNumberOfDigit, char text = '')
PreFilledCustom(long? number, byte maxNumberOfDigit, char text = '')
PrefilledCustom(ulong number, byte maxNumberOfDigit, string text = "")
PrefilledCustom(ulong? number, byte maxNumberOfDigit, string text = "")
PreFilledCustom(ulong number, byte maxNumberOfDigit, char text = '')
PreFilledCustom(ulong? number, byte maxNumberOfDigit, char text = '')
Returns prefilled value. If value is null returns only prefilling value. (string)
ulong?/long? number: Unsigned long, long number value or null.
byte maxNumberOfDigit: Maximum number of digit of numerical value.
string/char text: Desired value to add at left side.
PreFilledCustom(string context, int maxLength, string text = "")
PreFilledCustom(string context, int maxLength, char text = '')
Returns prefilled value. If context is null, it returns only prefilling value. (string)
string context: String text value.
int maxLength: Maximum length of text value.
string/char text: Desired value to add at left side.
PreFilledCustom(List<long> numberList, string text = "")
PreFilledCustom(List<long?> numberList, string text = "")
PrefilledCustom(List<long> numberList, char text = '')
PrefilledCustom(List<long?> numberList, char text = '')
PrefilledCustom(List<ulong> numberList, string text = "")
PrefilledCustom(List<ulong?> numberList, string text = "")
PrefilledCustom(List<long> numberList, char text = '')
PrefilledCustom(List<long?> numberList, char text = '')
Returns prefilled values. If element of given list is null, it returns only prefilling value for null element. (List<string>)
List<long?>/List<ulong?> numberList: List of signed long or unsigned long numerical values.
string/char text: Desired value to add at left side.
PreFilledCustom(List<string> contextList, string text = "")
PreFilledCustom(List<string) contextList, char text = '')
Returns prefilled values (List<string>)
List<string> contextList: List of string values.
string/char text: Desired value to add at left side.
PreFillCustom(long number, int maxNumberOfDigit, string text = "")
PreFillCustom(long? number, int maxNumberOfDigit, string text = "")
PreFillCustom(long number, int maxNumberOfDigit, char text = '')
PreFillCustom(long? number, int maxNumberOfDigit, char text = '')
PreFillCustom(ulong number, int maxNumberOfDigit, string text = "")
PreFillCustom(ulong? number, int maxNumberOfDigit, string text = "")
PreFillCustom(ulong number, int maxNumberOfDigit, char text = '')
PreFillCustom(ulong? number, int maxNumberOfDigit, char text = '')
Returns prefill value only. (string)
ulong?/long? number: Signed or unsigned long numberical value.
int maxNumberOfDigit: Maximum number of digit of numerical value.
string/char text: Desired value to add at left side.
PreFill[1-8](long number, char text = '')
PreFill[1-8](ulong number, char text = '')
Returns prefill value only. (string)
[1-8]: Maximum digit number of prefilled values.
ulong/long number: Signed or unsigned long numerical value.
char text: Desired value to add at left side.
PreFillCustom(string text, int maxLength, string stringValue = "")
PreFillCustom(string text, int maxLength, char charValue = '')
Returns prefill value only. (string)
string text: String text value.
int maxLength: Maximum length of string value.
string stringValue/char charValue: Desired value to add at left side.
Example Usage
- PreFilledCustom(5, 4, '0') ⇒ "0005"
- PreFilledCustom(null, 4, '0') ⇒ "0000"
- PreFilledCustom(55, 3, ' ') ⇒ " 55"
- PreFilledCustom("abc", 5, 'd') ⇒ "ddabc"
- PreFilledCustom({5, 4, 55, 45, 32, 375}, 4, '0') ⇒ {"0005", "0004", "0055", "0045", "0032", "0375"}
- PreFillCustom(5, 4, '0') ⇒ "000"
- PreFillCustom(55, 3, ' ') ⇒ " "
- PreFillCustom("abc", 5, 'd') ⇒ "dd"
- PreFillCustom({5, 4, 55, 45, 32, 375}, 4, '0') ⇒ {" ", " ", " ", " ", " "}
- PreFill1(5, ' ') ⇒ ""
- PreFill2(5, ' ') ⇒ " "
- PreFill8(5, ' ') ⇒ " "
Version History
2.1.0
- Multi-target frameworks (net6.0; net7.0; net461; netcoreapp3.1; netstandard2.0) support is added.
- OutputDLL folder is removed.
2.0.1
- Explipicit variables are used instead of var.
2.0.0
- Target framework changed from .Net Core 3.1 to .Net 7.0
1.3.1
- PrefilledCustom methods' name changed with PreFilledCustom.
1.3.0
- GetLengthOfString() private method was throwing error if given string value is null.
- PrefilledCustom() methods are added to support null values.
- PrefillCustom() methods are added to support null values.
1.2.0
- Added comments to methods.
1.1.0
- See commit change or See release history
- See changelog
1.0.0 Initial Release
- See commit change or See release history
- See changelog
Task list
Knowns bugs
- If length of desired text is more than one character repeatence of adding it may make result not aligned.
Licence
Authors
Twitter: @enesokullu
Help
Twitter: @enesokullu
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 is compatible. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 is compatible. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETCoreApp 3.1
- No dependencies.
-
.NETFramework 4.6.1
- No dependencies.
-
.NETStandard 2.0
- No dependencies.
-
net6.0
- No dependencies.
-
net7.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
v.2.1.0
Multi-target frameworks (net6.0; net7.0; net461; netcoreapp3.1; netstandard2.0) support is added.
OutputDLL folder is removed.