Innovenergy_trunk/csharp/Lib/Units/Generator/Parallel.cs

12 lines
427 B
C#
Raw Normal View History

2023-05-24 10:04:01 +00:00
using System.Diagnostics.CodeAnalysis;
// ReSharper disable once CheckNamespace
namespace InnovEnergy.Lib.Units;
public readonly struct Parallel
{
public Parallel(Double value) => throw new NotImplementedException();
public Double Value => throw new NotImplementedException();
public static Parallel operator |(Parallel left, Parallel right) => new((left.Value * right.Value) / (left.Value + right.Value));
}