12 lines
427 B
C#
12 lines
427 B
C#
|
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));
|
||
|
}
|