BmiPlugin 1.0.0

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

// Install BmiPlugin as a Cake Tool
#tool nuget:?package=BmiPlugin&version=1.0.0

<h1>Overview</h1> <p>This is a C# plugin for BMI calculating and gender assessment.</p>

<h1>Getting started</h1>

<h3>Usage example</h3> <p>Here is an example of code with MVVM pattern:<p>

using BmiPlugin;

internal class BmiViewModel
{
    public double Height { get; set; }
    public double Weigth { get; set; }
    public double Age { get; set; }

    public RelayCommand StartBmiCommand => new RelayCommand(sender => StartBmi());

    private void StartBmi()
    {
        Bmi.Start(Height, Weigth, Age);
        // or with certain deepness value
        // Bmi.Start(Height, Weigth, Age, Bmi.Deepness.High);
    
        double bmi = Bmi.GetBmi();
        double gender = Bmi.GetGenderAssessment();
    }
}

<h1>License</h1> <p> You can check out the full license <a href="https://github.com/Aiwprton-tcdp/BmiPlugin/blob/master/LICENSE.md">here</a> <p> <p>This project is licensed under the terms of the MIT license.<p>

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

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.1 457 4/6/2022
1.0.0 477 4/1/2022

Added human BMI calculator and gender assessment script with neural network