BFWOberhausen.FIA34.RechnenBiblio 1.0.0

Additional Details

Just one test class to learn how to use NuGet.

The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package BFWOberhausen.FIA34.RechnenBiblio --version 1.0.0
NuGet\Install-Package BFWOberhausen.FIA34.RechnenBiblio -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="BFWOberhausen.FIA34.RechnenBiblio" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add BFWOberhausen.FIA34.RechnenBiblio --version 1.0.0
#r "nuget: BFWOberhausen.FIA34.RechnenBiblio, 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 BFWOberhausen.FIA34.RechnenBiblio as a Cake Addin
#addin nuget:?package=BFWOberhausen.FIA34.RechnenBiblio&version=1.0.0

// Install BFWOberhausen.FIA34.RechnenBiblio as a Cake Tool
#tool nuget:?package=BFWOberhausen.FIA34.RechnenBiblio&version=1.0.0

Es handelt sich "nur" um eine Test-Klasse, um den Umgang mit Klassenbibliotheken zu erlernen.

Code:

using System;

namespace BFWOberhausen.FIA34
{
    /// <summary>
    /// Eine Test-Klasse, um den Umgang mit Klassenbibliotheken zu erlernen.
    /// </summary>
    public static class Rechnen
    {
        public static double Sum(double Summand1, double Summand2)
        {
            return Summand1 + Summand2;
        }

        public static double Mul(double Multiplikator, double Multiplikand)
        {
            return Multiplikator * Multiplikand;
        }

        public static bool Div(double Dividend, double Divisor, out double Quotient)
        {
            if (Divisor == 0)
            {
                Quotient = 0;
                return false;
            }
            else
            {
                Quotient = Dividend / Divisor;
                return true;
            }
        }

        public static double Sub(double Minuend, double Subtrahend)
        {
            return Minuend - Subtrahend;
        }

        //.... Und noch mehr Methoden 😉
    }
}
Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net5.0

    • 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