CommonNetFuncs.Core
1.0.37
See the version list below for details.
dotnet add package CommonNetFuncs.Core --version 1.0.37
NuGet\Install-Package CommonNetFuncs.Core -Version 1.0.37
<PackageReference Include="CommonNetFuncs.Core" Version="1.0.37" />
paket add CommonNetFuncs.Core --version 1.0.37
#r "nuget: CommonNetFuncs.Core, 1.0.37"
// Install CommonNetFuncs.Core as a Cake Addin #addin nuget:?package=CommonNetFuncs.Core&version=1.0.37 // Install CommonNetFuncs.Core as a Cake Tool #tool nuget:?package=CommonNetFuncs.Core&version=1.0.37
CommonNetFuncs.Core
This lightweight project contains helper methods for several common functions required by applications.
Contents
- Async
- Collections
- Copy
- DateHelpers
- DimensionScale
- ExceptionLocation
- FileHelpers
- Inspect
- MathHelpers
- Random
- RunBatches
- Streams
- Strings
- TypeChecks
- UnitConversion
Async
Helper methods for dealing with asynchronous processes. <details> <summary><h3>Usage Examples</h3></summary>
ObjectUpdate
Asynchronously update properties of a class using ObjectUpdate
//Fill the Name and Address property using async tasks
Person person = new();
//AsyncIntString helper class is used for int and string types since they can't otherwise be gotten asynchronously like this
AsyncIntString personPhotoLocation = new();
person.Id = 1;
List<Task> tasks =
[
person.ObjectUpdate(nameof(Person.Name), GetPersonNameByIdAsync(person.Id)), //Fills person.Name with results of GetPersonNameByIdAsync(person.Id)
person.ObjectUpdate(nameof(Person.Address), GetPersonAddressByIdAsync(person.Id)), //Fills person.Address with results of GetPersonAddressByIdAsync(person.Id)
personPhotoLocation.ObjectUpdate(nameof(AsyncIntString.AsyncString), GetPersonPhotoLocationById(person.Id)) //Fills personPhotoLocation.AsyncString with the results of GetPersonPhotoLocationById(person.Id)
]
await Task.WhenAll(tasks);
ObjectFill
Object fill can be used to asynchronously fill classes and lists with.
Person person = new();
ConcurrentBag<Person> people = [];
List<Task> tasks =
[
person.ObjectUpdate(GetPersonById(1)), //person is filled by results of GetPersonById(1) which returns type Person
//people is filled by the results of all three calls to GetPeopleByState additively (all results will be present in people)
people.ObjectUpdate(GetPeopleByState("Ohio")),
people.ObjectUpdate(GetPeopleByState("California")),
people.ObjectUpdate(GetPeopleByState("Texas"))
]
await Task.WhenAll(tasks);
</details>
Collections
Collections Usage Examples
Helper methods that work with collections such as IEnumerable, List, IDictionary, ConcurrentBag, and DataTable
<details> <summary><h3>Usage Examples</h3></summary>
AnyFast
Used to address issue CA1860 where it suggests using .Count for performance in an easier to type extension method
bool x = collection?.Any() == true;
//Or
collection?.Count > 0;
//Becomes
bool x = collection.AnyFast();
</details>
Copy
Copy Usage Examples
[Description here]
<details> <summary><h3>Usage Examples</h3></summary>
[MethodNameHere]
//Code here
</details>
DateHelpers
DateHelpers Usage Examples
[Description here]
<details> <summary><h3>Usage Examples</h3></summary>
[MethodNameHere]
//Code here
</details>
DimensionScale
DimensionScale Usage Examples
[Description here]
<details> <summary><h3>Usage Examples</h3></summary>
[MethodNameHere]
//Code here
</details>
ExceptionLocation
ExceptionLocation Usage Examples
[Description here]
<details> <summary><h3>Usage Examples</h3></summary>
[MethodNameHere]
//Code here
</details>
FileHelpers
FileHelpers Usage Examples
[Description here]
<details> <summary><h3>Usage Examples</h3></summary>
[MethodNameHere]
//Code here
</details>
Inspect
Inspect Usage Examples
[Description here]
<details> <summary><h3>Usage Examples</h3></summary>
[MethodNameHere]
//Code here
</details>
MathHelpers
MathHelpers Usage Examples
[Description here]
<details> <summary><h3>Usage Examples</h3></summary>
[MethodNameHere]
//Code here
</details>
Random
Random Usage Examples
[Description here]
<details> <summary><h3>Usage Examples</h3></summary>
[MethodNameHere]
//Code here
</details>
RunBatches
RunBatches Usage Examples
[Description here]
<details> <summary><h3>Usage Examples</h3></summary>
[MethodNameHere]
//Code here
</details>
Streams
Streams Usage Examples
[Description here]
<details> <summary><h3>Usage Examples</h3></summary>
[MethodNameHere]
//Code here
</details>
Strings
Strings Usage Examples
[Description here]
<details> <summary><h3>Usage Examples</h3></summary>
[MethodNameHere]
//Code here
</details>
TypeChecks
TypeChecks Usage Examples
[Description here]
<details> <summary><h3>Usage Examples</h3></summary>
[MethodNameHere]
//Code here
</details>
UnitConversion
UnitConversion Usage Examples
[Description here]
<details> <summary><h3>Usage Examples</h3></summary>
[MethodNameHere]
//Code here
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. 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. |
-
net8.0
- No dependencies.
NuGet packages (19)
Showing the top 5 NuGet packages that depend on CommonNetFuncs.Core:
Package | Downloads |
---|---|
CommonNetFuncs.Sql.Common
Helper methods that deal with preparing and executing queries. |
|
CommonNetFuncs.EFCore
Helper methods that deal with EFCore, including providing basic actions against a DB Context and handling navigation properties. |
|
CommonNetFuncs.Web.Aws.S3
Helper methods that deal with AWS S3 interactions |
|
CommonNetFuncs.DeepClone
Helper methods that deal with deep cloning objects (copying an object without a memory reference). |
|
CommonNetFuncs.Compression
Helper methods that deal with compression and decompression of both files and streams. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated | |
---|---|---|---|
2.0.3 | 56 | 11/20/2024 | |
2.0.2 | 199 | 11/18/2024 | |
2.0.1 | 164 | 11/15/2024 | |
2.0.0 | 175 | 11/14/2024 | |
1.0.47 | 208 | 11/14/2024 | |
1.0.42 | 245 | 11/12/2024 | |
1.0.40 | 230 | 11/12/2024 | |
1.0.37 | 274 | 11/4/2024 | |
1.0.31 | 232 | 10/31/2024 | |
1.0.28 | 261 | 10/25/2024 | |
1.0.26 | 260 | 10/18/2024 | |
1.0.25 | 185 | 10/17/2024 | |
1.0.24 | 178 | 10/17/2024 | |
1.0.19 | 256 | 10/11/2024 | |
1.0.17 | 381 | 9/27/2024 | |
1.0.16 | 223 | 9/27/2024 | |
1.0.14 | 234 | 9/23/2024 | |
1.0.13 | 244 | 9/18/2024 | |
1.0.12 | 326 | 9/18/2024 | |
1.0.10 | 303 | 9/11/2024 | |
1.0.9 | 301 | 9/11/2024 | |
1.0.8 | 344 | 9/11/2024 | |
1.0.7 | 346 | 9/11/2024 | |
1.0.6 | 134 | 9/9/2024 | |
1.0.5 | 124 | 9/5/2024 | |
1.0.4 | 120 | 9/5/2024 | |
1.0.3 | 113 | 9/4/2024 | |
1.0.2 | 106 | 9/4/2024 | |
1.0.1 | 311 | 9/4/2024 | |
1.0.0 | 280 | 9/2/2024 |