MemoryAnalyzers 0.1.0-beta.2
This is a prerelease version of MemoryAnalyzers.
There is a newer prerelease version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package MemoryAnalyzers --version 0.1.0-beta.2
NuGet\Install-Package MemoryAnalyzers -Version 0.1.0-beta.2
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="MemoryAnalyzers" Version="0.1.0-beta.2"> <PrivateAssets>all</PrivateAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> </PackageReference>
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MemoryAnalyzers --version 0.1.0-beta.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: MemoryAnalyzers, 0.1.0-beta.2"
#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 MemoryAnalyzers as a Cake Addin #addin nuget:?package=MemoryAnalyzers&version=0.1.0-beta.2&prerelease // Install MemoryAnalyzers as a Cake Tool #tool nuget:?package=MemoryAnalyzers&version=0.1.0-beta.2&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
memory-analyzers
A set of Roslyn C# code analyzers for finding memory leaks in iOS and MacCatalyst applications.
MA0001
Don't define public
events in NSObject
subclasses:
public class MyView : UIView
{
// NOPE!
public event EventHandler MyEvent;
}
MA0002
Don't declare members in NSObject
subclasses unless they are:
WeakReference
orWeakReference<T>
- Value types
class MyView : UIView
{
// NOPE!
public UIView? Parent { get; set; }
public void Add(MyView subview)
{
subview.Parent = this;
AddSubview(subview);
}
}
MA0003
Don't subscribe to events inside NSObject
subclasses unless:
- It's your event via
this.MyEvent
or from a base type. - The method is
static
.
class MyView : UIView
{
public MyView()
{
var picker = new UIDatePicker();
AddSubview(picker);
picker.ValueChanged += OnValueChanged;
}
void OnValueChanged(object sender, EventArgs e) { }
// Use this instead and it doesn't leak!
//static void OnValueChanged(object sender, EventArgs e) { }
}
There are no supported framework assets in this package.
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on MemoryAnalyzers:
Package | Downloads |
---|---|
Dhgms.QualityAssurancePack
Collection of packages for assisting in QA during .NET software development |
GitHub repositories (2)
Showing the top 2 popular GitHub repositories that depend on MemoryAnalyzers:
Repository | Stars |
---|---|
dotnet/maui
.NET MAUI is the .NET Multi-platform App UI, a framework for building native device applications spanning mobile, tablet, and desktop.
|
|
Redth/Maui.VirtualListView
A slim ListView implementation for .NET MAUI that uses Platform virtualized lists / collections
|
Version | Downloads | Last updated |
---|---|---|
0.1.0-beta.5 | 13,231 | 10/30/2023 |
0.1.0-beta.4 | 272 | 10/24/2023 |
0.1.0-beta.3 | 4,232 | 8/10/2023 |
0.1.0-beta.2 | 89 | 8/7/2023 |
0.1.0-beta.1 | 104 | 7/25/2023 |