Cs.Core
0.0.9
dotnet add package Cs.Core --version 0.0.9
NuGet\Install-Package Cs.Core -Version 0.0.9
<PackageReference Include="Cs.Core" Version="0.0.9" />
paket add Cs.Core --version 0.0.9
#r "nuget: Cs.Core, 0.0.9"
// Install Cs.Core as a Cake Addin #addin nuget:?package=Cs.Core&version=0.0.9 // Install Cs.Core as a Cake Tool #tool nuget:?package=Cs.Core&version=0.0.9
Cs.Core
This is a project that gathers commonly used basic functionalities across various projects. It deals with handling time (DateTime), utilizing xml and json formatted data, zip compression, executing external processes, and includes miscellaneous functionalities.
It also encompasses several data structures not provided by System.Collection.Generic.
CircularBuffer
: A thread-safe circular buffer for multi-threaded access.LruCache
: A cache container using LinkedList<T> (not thread-safe for multi-threaded access).PriorityQueue
: A priority queue using the Heap data structure (though now natively provided from .NET 6 onwards).
여러 프로젝트에서 범용적으로 쓰이는 기본 동작들을 모아둔 프로젝트 입니다.
시간(DateTime)을 다루거나, xml, json 포맷 데이터 사용, zip 압축, 외부 process 실행 등 다양하고 소소한 소품들을 모아둡니다.
System.Collection.Generic
에서 기본 제공되지 않는 몇가지 자료구조도 포함하고 있습니다.
CircularBuffer
: 멀티 스레드 접근에 안전한 순환형 버퍼LruCache
: LinkedList<T> 사용한 캐시 컨테이너. (멀티스레드 접근에 안전하지 않음)PriorityQueue
: Heap 자료구조를 이용한 우선순위 큐. (하지만 이제는 .net6부터 기본 제공됩니다.)
Getting Started
Prerequisites
- .net SDK 8.0
Installation
download from nuget.org
dotnet add package Cs.Core
License
This project is licensed under the MIT License. For details, see the License File.
Contact
mailto: github@studiobside.com
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
- Cs.Logging (>= 0.0.9)
- Microsoft.Extensions.Configuration.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Hosting.Abstractions (>= 8.0.0)
- Newtonsoft.Json (>= 13.0.3)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on Cs.Core:
Package | Downloads |
---|---|
Cs.HttpClient
gathers logic related to handling HTTP requests required for using external REST APIs. |
|
Cs.Math
Gathers mathematical logics. |
|
Cs.Antlr
Gathers commonly used basic functionalities across various projects. |
GitHub repositories
This package is not used by any popular GitHub repositories.
first release