Class Point
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
Properties
Concentration
Gets or sets the concentration value.
public double Concentration { get; set; }
Property Value
Value
Gets or sets the measured value.
public double Value { get; set; }
Property Value
Methods
ToString()
Returns a string representation of the data point.
public override string ToString()
Returns
- string
A formatted string displaying the concentration and value.