C# Class LibiadaWeb.Models.Calculators.IntPair

The integer pair.
Show file Open project: intervals-mining-lab/libiada-web

Public Properties

Property Type Description
First int
Second int

Public Methods

Method Description
IntPair ( int first, int second )

Initializes a new instance of the IntPair structure.

Method Details

IntPair() public method

Initializes a new instance of the IntPair structure.
public IntPair ( int first, int second )
first int /// The first. ///
second int /// The second. ///

Property Details

First public property

The first.
public int First
return int

Second public property

The second.
public int Second
return int