Vst.StringParse
2.0.0.2
.NET 5.0
.NET Standard 2.0
.NET Framework 4.0
dotnet add package Vst.StringParse --version 2.0.0.2
NuGet\Install-Package Vst.StringParse -Version 2.0.0.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Vst.StringParse" Version="2.0.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Vst.StringParse --version 2.0.0.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Vst.StringParse, 2.0.0.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Vst.StringParse as a Cake Addin
#addin nuget:?package=Vst.StringParse&version=2.0.0.2
// Install Vst.StringParse as a Cake Tool
#tool nuget:?package=Vst.StringParse&version=2.0.0.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
StringParse
Provides a Parse generic extension method for string that converts string to T and no boxing occurs.
// The following code does not occur boxing
var a1 = "123".Parse<int>(); // a1 == 123
var a3 = "123".Parse<int?>(); // a3 == 123
Usage example
using System;
using System.Globalization;
using StringParse;
void Exmaple1() {
_ = "12".Parse<int>(); // 12
// _ = "ss".Parse<int>(); // throw FormatException
// with default value, Actually call the TryParse method internally
_ = "12".ParseOr(10); // 12
_ = "ss".ParseOr(10); // 10
// with NumberStyles
_ = "F".Parse<int>(NumberStyles.HexNumber); // 15
// parse Nullable
_ = "12".Parse<int?>(); // 12
// _ = "ss".Parse<int?>(); // throw FormatException
// TryParse
_ = "12".TryParse(out int _); // true
_ = "ss".TryParse(out int _); // false
// Parse Enum
_ = "Saturday".ParseEnum<DayOfWeek>(); // DayOfWeek.Saturday
_ = "Saturday".TryParseEnum(out DayOfWeek _); // true
}
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.0 netstandard2.1 |
.NET Framework | net40 net403 net45 net451 net452 net46 net461 net462 net463 net47 net471 net472 net48 net481 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.
-
.NETFramework 4.0
- No dependencies.
-
.NETStandard 2.0
- No dependencies.
-
.NETStandard 2.1
- No dependencies.
-
net5.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.
Version | Downloads | Last updated | |
---|---|---|---|
2.0.0.2 | 108 | 2/6/2023 | |
2.0.0.1 | 106 | 2/5/2023 | |
2.0.0 | 101 | 2/5/2023 | |
2.0.0-alpha | 52 | 2/5/2023 | |
1.0.0 | 578 | 1/31/2021 | |
1.0.0-alpha2 | 340 | 1/31/2021 | |
1.0.0-alpha1 | 281 | 1/30/2021 |