SharpTag 1.2.0
See the version list below for details.
dotnet add package SharpTag --version 1.2.0
NuGet\Install-Package SharpTag -Version 1.2.0
<PackageReference Include="SharpTag" Version="1.2.0" />
<PackageVersion Include="SharpTag" Version="1.2.0" />
<PackageReference Include="SharpTag" />
paket add SharpTag --version 1.2.0
#r "nuget: SharpTag, 1.2.0"
#:package SharpTag@1.2.0
#addin nuget:?package=SharpTag&version=1.2.0
#tool nuget:?package=SharpTag&version=1.2.0
Easily tag extra data to objects like this : Person person = new Student(); person .Tag("birthDate", DateTime.Now);
And retrive it this way : DateTime birthDate = person.Tag<DateTime>("birthDate");
Also there is a shared state data dictionary for any object instance which it is available as demonstrated below : public static Object sharedStateObj = new Object();
Dictionary<string, object> state = sharedStateObj.StateData(); state["StartTime"] = DateTime.Now;
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET Framework | net472 is compatible. net48 was computed. net481 was computed. |
This package has 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.
Solved preventing main thread from being stopped when application is done.
Added object shared state data dictionary.