Coplt.Dropping
0.6.0
dotnet add package Coplt.Dropping --version 0.6.0
NuGet\Install-Package Coplt.Dropping -Version 0.6.0
<PackageReference Include="Coplt.Dropping" Version="0.6.0" />
<PackageVersion Include="Coplt.Dropping" Version="0.6.0" />
<PackageReference Include="Coplt.Dropping" />
paket add Coplt.Dropping --version 0.6.0
#r "nuget: Coplt.Dropping, 0.6.0"
#addin nuget:?package=Coplt.Dropping&version=0.6.0
#tool nuget:?package=Coplt.Dropping&version=0.6.0
Coplt.Dropping
Auto gen dispose pattern
- Auto handle
Dispose(bool dispoing)
pattern - Auto handle destructor/finalizer
- Allow multiple drops
- Specify the drop order
[Drop(Order = X)]
- The first argument of
Drop
target method can bebool disposing
- Mark Drop directly on fields and properties (requires target type have
Dispose
method) - Dose not supported
AsyncDispose
, too complicated, it is recommended to implement it manually Drop
can mark on static methods, will passthis
on first argument, if havebool disposing
will be the second argument
Example
Basic usage
[Dropping] public partial class Foo1 { [Drop] public void Drop() { Console.WriteLine(1); } }
Generate output:
<details> <summary>Foo1.dropping.g.cs</summary>
// <auto-generated/> #nullable enable using Coplt.Dropping; public partial class Foo1 : global::System.IDisposable { protected virtual void Dispose(bool disposing) { if (disposing) Drop(); } public void Dispose() { Dispose(true); GC.SuppressFinalize(this); } ~Foo1() { Dispose(false); } }
</details> <br/>
Unmanaged resources
[Dropping(Unmanaged = true /* set drop in the class all default is unmanaged */)] public partial class Foo2 { [Drop] private void Drop() { Console.WriteLine(1); } [Drop(Unmanaged = false)] private void Drop2() { Console.WriteLine(2); } }
Generate output:
<details> <summary>Foo2.dropping.g.cs</summary>
// <auto-generated/> #nullable enable using Coplt.Dropping; public partial class Foo2 : global::System.IDisposable { protected virtual void Dispose(bool disposing) { Drop(); if (disposing) Drop2(); } public void Dispose() { Dispose(true); GC.SuppressFinalize(this); } ~Foo2() { Dispose(false); } }
</details> <br/>
Inherit
[Dropping] public partial class Foo3 : Foo2 { [Drop] private void Drop() { Console.WriteLine(1); } [Drop(Unmanaged = true)] private void Drop2() { Console.WriteLine(2); } }
Generate output:
<details> <summary>Foo3.dropping.g.cs</summary>
// <auto-generated/> #nullable enable using Coplt.Dropping; public partial class Foo3 : global::System.IDisposable { protected override void Dispose(bool disposing) { if (disposing) Drop(); Drop2(); base.Dispose(disposing); } }
</details> <br/>
Sealed And Struct
[Dropping] public sealed partial class Foo4 { [Drop] public void Drop() { Console.WriteLine(1); } } [Dropping(Unmanaged = true)] public sealed partial class Foo5 { [Drop] public void Drop() { Console.WriteLine(1); } } [Dropping] public partial struct Foo6 { [Drop] private void Drop() { Console.WriteLine(1); } }
Generate output:
<details> <summary>Foo4.dropping.g.cs</summary>
// <auto-generated/> #nullable enable using Coplt.Dropping; public partial class Foo4 : global::System.IDisposable { public void Dispose() { Drop(); } }
</details>
<details> <summary>Foo5.dropping.g.cs</summary>
// <auto-generated/> #nullable enable using Coplt.Dropping; public partial class Foo5 : global::System.IDisposable { public void Dispose() { Drop(); GC.SuppressFinalize(this); } ~Foo5() { Dispose(); } }
</details>
<details> <summary>Foo6.dropping.g.cs</summary>
// <auto-generated/> #nullable enable using Coplt.Dropping; public partial struct Foo6 : global::System.IDisposable { public void Dispose() { Drop(); } }
</details> <br/>
More see Tests
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
NuGet packages (2)
Showing the top 2 NuGet packages that depend on Coplt.Dropping:
Package | Downloads |
---|---|
Coplt.Boxing
Utilities related to boxing |
|
Coplt.Windowing.Win32
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.