https://github.com/bronsk1y/kaz.operations.core
Contains enums for the Kaz.Operations library.
https://github.com/bronsk1y/kaz.operations.core
csharp dotnet dotnet-472
Last synced: 4 months ago
JSON representation
Contains enums for the Kaz.Operations library.
- Host: GitHub
- URL: https://github.com/bronsk1y/kaz.operations.core
- Owner: bronsk1y
- Created: 2026-02-21T16:59:02.000Z (5 months ago)
- Default Branch: master
- Last Pushed: 2026-02-26T07:29:11.000Z (4 months ago)
- Last Synced: 2026-02-26T15:39:45.543Z (4 months ago)
- Topics: csharp, dotnet, dotnet-472
- Language: C#
- Homepage:
- Size: 1.38 MB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Kaz.Operations.Core
Basic package with necessary parameters for the `Kaz.Operations` library.
Used in `Kaz.Operations.Text`, `Kaz.Operations.Numerics` and other dependent libraries.
---
## Enums
- ### UrlScheme
```csharp
public enum UrlScheme
{
Any,
Http,
Https
}
```
- ### IpVersion
```csharp
public enum IpVersion
{
Any,
IPv4,
IPv6
}
```
- ### PercentageCalculationMethod
```csharp
public enum PercentageCalculationMethod
{
FractionOfTotal,
RatioOfTotal
}
```
- ### NumberExtractionOptions
```csharp
public enum NumberExtractionOptions
{
Digits,
Decimals,
Scientific
}
```
---
## Installation
- **.NET CLI:**
```bash
dotnet add package Kaz.Operations.Core
```
- **NuGet Package Manager:**
```powershell
Install-Package Kaz.Operations.Core
```
---
## Ссылки
- [NuGet](https://www.nuget.org/packages/Kaz.Operations.Core)