BmiPlugin 1.0.0
See the version list below for details.
dotnet add package BmiPlugin --version 1.0.0
NuGet\Install-Package BmiPlugin -Version 1.0.0
<PackageReference Include="BmiPlugin" Version="1.0.0" />
paket add BmiPlugin --version 1.0.0
#r "nuget: BmiPlugin, 1.0.0"
// 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>
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.1
- SampleDependency (>= 1.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Added human BMI calculator and gender assessment script with neural network