Coplt.Dropping 0.6.0

dotnet add package Coplt.Dropping --version 0.6.0
                    
NuGet\Install-Package Coplt.Dropping -Version 0.6.0
                    
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="Coplt.Dropping" Version="0.6.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Coplt.Dropping" Version="0.6.0" />
                    
Directory.Packages.props
<PackageReference Include="Coplt.Dropping" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Coplt.Dropping --version 0.6.0
                    
#r "nuget: Coplt.Dropping, 0.6.0"
                    
#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.
#addin nuget:?package=Coplt.Dropping&version=0.6.0
                    
Install Coplt.Dropping as a Cake Addin
#tool nuget:?package=Coplt.Dropping&version=0.6.0
                    
Install Coplt.Dropping as a Cake Tool

Coplt.Dropping

Nuget MIT

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 be bool 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 pass this on first argument, if have bool 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

There are no supported framework assets in this package.

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.

Version Downloads Last updated
0.6.0 126 2/23/2025
0.5.1 199 8/18/2024
0.5.0 130 8/18/2024
0.3.1 132 8/18/2024