Show / Hide Table of Contents

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 Source

AgeRange(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 Source

End

Gets an age that represents the exclusive end of the range.

Declaration
public readonly int End { get; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

Start

Gets the inclusive start of the AgeRange.

Declaration
public readonly int Start { get; }
Property Value
Type Description
System.Int32
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX