Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
SignedRational.cs
1
namespace
Waher.Content.Images.Exif
2
{
6
public
class
SignedRational
7
{
8
private
readonly
int
numerator;
9
private
readonly
int
denominator;
10
16
public
SignedRational
(
int
Numerator
,
int
Denominator
)
17
{
18
this.numerator =
Numerator
;
19
this.denominator =
Denominator
;
20
}
21
25
public
int
Numerator
=> this.numerator;
26
30
public
int
Denominator
=> this.denominator;
31
33
public
override
string
ToString
()
34
{
35
return
this.numerator.ToString() +
"/"
+ this.denominator.ToString();
36
}
37
}
38
}
Waher.Content.Images.Exif.SignedRational
Represents an EXIF SRATIONAL value.
Definition:
SignedRational.cs:7
Waher.Content.Images.Exif.SignedRational.Numerator
int Numerator
Typed EXIF Tag Value Numerator
Definition:
SignedRational.cs:25
Waher.Content.Images.Exif.SignedRational.ToString
override string ToString()
Definition:
SignedRational.cs:33
Waher.Content.Images.Exif.SignedRational.Denominator
int Denominator
Typed EXIF Tag Value Denominator
Definition:
SignedRational.cs:30
Waher.Content.Images.Exif.SignedRational.SignedRational
SignedRational(int Numerator, int Denominator)
Represents an EXIF RATIONAL value.
Definition:
SignedRational.cs:16
Waher.Content.Images.Exif
Definition:
ExifAsciiTag.cs:2
IoTGateway
Content
Waher.Content.Images
Exif
SignedRational.cs
Generated by
1.9.5