Table of Contents

Class Point

Namespace
Hse.EviFluor
Assembly
Hseagcom.EviFluor.dll

Represents a data point with a concentration and corresponding value.

public class Point
Inheritance
Point
Inherited Members

Constructors

Point(double, double)

Initializes a new instance of the Point class with specified concentration and value.

public Point(double concentration, double value)

Parameters

concentration double
value double

Properties

Concentration

Gets or sets the concentration value.

public double Concentration { get; set; }

Property Value

double

Value

Gets or sets the measured value.

public double Value { get; set; }

Property Value

double

Methods

ToString()

Returns a string representation of the data point.

public override string ToString()

Returns

string

A formatted string displaying the concentration and value.