Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
SignedRational.cs
2{
6 public class SignedRational
7 {
8 private readonly int numerator;
9 private readonly int denominator;
10
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}
Represents an EXIF SRATIONAL value.
int Numerator
Typed EXIF Tag Value Numerator
int Denominator
Typed EXIF Tag Value Denominator
SignedRational(int Numerator, int Denominator)
Represents an EXIF RATIONAL value.