BlubbiChanged 1.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package BlubbiChanged --version 1.0.1
NuGet\Install-Package BlubbiChanged -Version 1.0.1
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="BlubbiChanged" Version="1.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add BlubbiChanged --version 1.0.1
#r "nuget: BlubbiChanged, 1.0.1"
#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 BlubbiChanged as a Cake Addin
#addin nuget:?package=BlubbiChanged&version=1.0.1

// Install BlubbiChanged as a Cake Tool
#tool nuget:?package=BlubbiChanged&version=1.0.1

BlubbiChanged

Automatically generate code to add INotifyPropertyChanged and INotifyPropertyChanging to your properties.

What you write
partial class Program
{
    /// <summary>
    /// That is my name
    /// </summary>
    [AutoNotify]
    private string myName;
}
What will be generated
partial class Program : System.ComponentModel.INotifyPropertyChanging, System.ComponentModel.INotifyPropertyChanged
{
    /// <inheritdoc/>
    public event global::System.ComponentModel.PropertyChangingEventHandler PropertyChanging;

    /// <inheritdoc/>
    public event global::System.ComponentModel.PropertyChangedEventHandler PropertyChanged;

    /// <summary>
    /// That is my name
    /// </summary>
    public string MyName
    {
        get => this.myName;
        set
        {
            if (global::System.Collections.Generic.EqualityComparer<string>.Default.Equals(this.myName, value))
                return;

            this.PropertyChanging?.Invoke(this, new global::System.ComponentModel.PropertyChangingEventArgs("MyName"));

            this.myName = value;

            this.PropertyChanged?.Invoke(this, new global::System.ComponentModel.PropertyChangedEventArgs("MyName"));
        }
    }
}
There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.4 458 10/15/2021
1.0.3 346 10/10/2021
1.0.2 351 10/10/2021
1.0.1 295 8/17/2021
1.0.0 291 8/10/2021