Struct AgeRange
Represents a range that has start and end age.
Inherited Members
System.ValueType.Equals(System.Object)
System.ValueType.GetHashCode()
System.ValueType.ToString()
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetType()
Namespace: FaceRecognitionDotNet.Extensions
Assembly: FaceRecognitionDotNet.dll
Syntax
public struct AgeRange
Constructors
| Improve this Doc View SourceAgeRange(Int32, Int32)
Instantiates a new AgeRange instance with the specified starting and ending ages.
Declaration
public AgeRange(int start, int end)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | start | The inclusive age index of the range. |
System.Int32 | end | The exclusive end age of the range. |
Properties
| Improve this Doc View SourceEnd
Gets an age that represents the exclusive end of the range.
Declaration
public readonly int End { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Start
Gets the inclusive start of the AgeRange.
Declaration
public readonly int Start { get; }
Property Value
Type | Description |
---|---|
System.Int32 |