System.Memory
4.5.4
Provides types for efficient representation and pooling of managed, stack, and native memory segments and sequences of such segments, along with primitives to parse and format UTF-8 encoded text stored in those memory segments.
Commonly Used Types:
System.Span
System.ReadOnlySpan
System.Memory
System.ReadOnlyMemory
System.Buffers.MemoryPool
System.Buffers.ReadOnlySequence
System.Buffers.Text.Utf8Parser
System.Buffers.Text.Utf8Formatter
7601f4f6225089ffb291dc7d58293c7bbf5c5d4f
When using NuGet 3.x this package requires at least version 3.4.
Requires NuGet 2.12 or higher.
Install-Package System.Memory -Version 4.5.4
dotnet add package System.Memory --version 4.5.4
<PackageReference Include="System.Memory" Version="4.5.4" />
paket add System.Memory --version 4.5.4
#r "nuget: System.Memory, 4.5.4"
// Install System.Memory as a Cake Addin
#addin nuget:?package=System.Memory&version=4.5.4
// Install System.Memory as a Cake Tool
#tool nuget:?package=System.Memory&version=4.5.4
Release Notes
https://go.microsoft.com/fwlink/?LinkID=799421
Dependencies
-
.NETCoreApp 2.0
- System.Runtime.CompilerServices.Unsafe (>= 4.5.3)
-
.NETCoreApp 2.1
- No dependencies.
-
.NETFramework 4.5
- System.Buffers (>= 4.5.1)
- System.Runtime.CompilerServices.Unsafe (>= 4.5.3)
-
.NETFramework 4.6.1
- System.Buffers (>= 4.5.1)
- System.Numerics.Vectors (>= 4.5.0)
- System.Runtime.CompilerServices.Unsafe (>= 4.5.3)
-
.NETStandard 1.1
- System.Buffers (>= 4.5.1)
- System.Diagnostics.Debug (>= 4.3.0)
- System.Globalization (>= 4.3.0)
- System.Reflection (>= 4.3.0)
- System.Resources.ResourceManager (>= 4.3.0)
- System.Runtime (>= 4.3.0)
- System.Runtime.CompilerServices.Unsafe (>= 4.5.3)
- System.Runtime.Extensions (>= 4.3.0)
- System.Runtime.InteropServices (>= 4.3.0)
-
.NETStandard 2.0
- System.Buffers (>= 4.5.1)
- System.Numerics.Vectors (>= 4.4.0)
- System.Runtime.CompilerServices.Unsafe (>= 4.5.3)
-
MonoAndroid 1.0
- System.Buffers (>= 4.5.1)
- System.Runtime.CompilerServices.Unsafe (>= 4.5.3)
-
MonoTouch 1.0
- System.Buffers (>= 4.5.1)
- System.Runtime.CompilerServices.Unsafe (>= 4.5.3)
-
Portable Class Library (.NETFramework 4.5, Windows 8.0, WindowsPhoneApp 8.1)
- System.Buffers (>= 4.5.1)
- System.Runtime.CompilerServices.Unsafe (>= 4.5.3)
-
UAP 10.0.16299
- System.Runtime.CompilerServices.Unsafe (>= 4.5.3)
-
Windows 8.0
- System.Buffers (>= 4.5.1)
- System.Runtime.CompilerServices.Unsafe (>= 4.5.3)
-
WindowsPhoneApp 8.1
- System.Buffers (>= 4.5.1)
- System.Runtime.CompilerServices.Unsafe (>= 4.5.3)
-
Xamarin.iOS 1.0
- System.Buffers (>= 4.5.1)
- System.Runtime.CompilerServices.Unsafe (>= 4.5.3)
-
Xamarin.Mac 2.0
- System.Buffers (>= 4.5.1)
- System.Runtime.CompilerServices.Unsafe (>= 4.5.3)
-
Xamarin.TVOS 1.0
- System.Buffers (>= 4.5.1)
- System.Runtime.CompilerServices.Unsafe (>= 4.5.3)
-
Xamarin.WatchOS 1.0
- System.Buffers (>= 4.5.1)
- System.Runtime.CompilerServices.Unsafe (>= 4.5.3)
Used By
NuGet packages (1.3K)
Showing the top 5 NuGet packages that depend on System.Memory:
Package | Downloads |
---|---|
Microsoft.Extensions.Primitives
Primitives shared by framework extensions. Commonly used types include:
Commonly Used Types:
Microsoft.Extensions.Primitives.IChangeToken
Microsoft.Extensions.Primitives.StringValues
Microsoft.Extensions.Primitives.StringSegment
|
|
Microsoft.Extensions.Logging.Abstractions
Logging abstractions for Microsoft.Extensions.Logging.
Commonly Used Types:
Microsoft.Extensions.Logging.ILogger
Microsoft.Extensions.Logging.ILoggerFactory
Microsoft.Extensions.Logging.ILogger<TCategoryName>
Microsoft.Extensions.Logging.LogLevel
Microsoft.Extensions.Logging.Logger<T>
Microsoft.Extensions.Logging.LoggerMessage
Microsoft.Extensions.Logging.Abstractions.NullLogger
|
|
System.Diagnostics.DiagnosticSource
Provides Classes that allow you to decouple code logging rich (unserializable) diagnostics/telemetry (e.g. framework) from code that consumes it (e.g. tools)
Commonly Used Types:
System.Diagnostics.DiagnosticListener
System.Diagnostics.DiagnosticSource
|
|
Microsoft.Extensions.Logging
Logging infrastructure default implementation for Microsoft.Extensions.Logging.
|
|
System.Collections.Immutable
This package provides collections that are thread safe and guaranteed to never change their contents, also known as immutable collections. Like strings, any methods that perform modifications will not change the existing instance but instead return a new instance. For efficiency reasons, the implementation uses a sharing mechanism to ensure that newly created instances share as much data as possible with the previous instance while ensuring that operations have a predictable time complexity.
Commonly Used Types:
System.Collections.Immutable.ImmutableArray
System.Collections.Immutable.ImmutableArray<T>
System.Collections.Immutable.ImmutableDictionary
System.Collections.Immutable.ImmutableDictionary<TKey,TValue>
System.Collections.Immutable.ImmutableHashSet
System.Collections.Immutable.ImmutableHashSet<T>
System.Collections.Immutable.ImmutableList
System.Collections.Immutable.ImmutableList<T>
System.Collections.Immutable.ImmutableQueue
System.Collections.Immutable.ImmutableQueue<T>
System.Collections.Immutable.ImmutableSortedDictionary
System.Collections.Immutable.ImmutableSortedDictionary<TKey,TValue>
System.Collections.Immutable.ImmutableSortedSet
System.Collections.Immutable.ImmutableSortedSet<T>
System.Collections.Immutable.ImmutableStack
System.Collections.Immutable.ImmutableStack<T>
|
GitHub repositories (371)
Showing the top 5 popular GitHub repositories that depend on System.Memory:
Repository | Stars |
---|---|
dotnet/roslyn
The Roslyn .NET compiler provides C# and Visual Basic languages with rich code analysis APIs.
|
|
icsharpcode/ILSpy
.NET Decompiler with support for PDB generation, ReadyToRun, Metadata (&more) - cross-platform!
|
|
AvaloniaUI/Avalonia
A cross platform XAML framework for .NET
|
|
mono/mono
Mono open source ECMA CLI, C# and .NET implementation.
|
|
QL-Win/QuickLook
Bring macOS “Quick Look” feature to Windows
|
Version History
Version | Downloads | Last updated |
---|---|---|
4.5.4 | 49,891,457 | 3/24/2020 |
4.5.3 | 119,205,761 | 5/14/2019 |
4.5.2 | 69,963,536 | 1/8/2019 |
4.5.2-servicing-27114-05 | 178,935 | 11/28/2018 |
4.5.1 | 98,677,160 | 6/18/2018 |
4.5.0 | 128,668,795 | 5/29/2018 |
4.5.0-rc1 | 2,200,153 | 5/6/2018 |
4.5.0-preview2-26406-04 | 531,962 | 4/10/2018 |
4.5.0-preview1-26216-02 | 519,719 | 2/26/2018 |
4.4.0-preview1-25305-02 | 416,490 | 5/9/2017 |