Cs.Core 0.0.4

dotnet add package Cs.Core --version 0.0.4
NuGet\Install-Package Cs.Core -Version 0.0.4
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="Cs.Core" Version="0.0.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Cs.Core --version 0.0.4
#r "nuget: Cs.Core, 0.0.4"
#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 Cs.Core as a Cake Addin
#addin nuget:?package=Cs.Core&version=0.0.4

// Install Cs.Core as a Cake Tool
#tool nuget:?package=Cs.Core&version=0.0.4

alternate text is missing from this package README image

.NET publish nuget

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

Contact

mailto: github@studiobside.com

Product 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 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.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.0.4 213 11/30/2023
0.0.3 153 11/18/2023

first release