### YamlMime:ManagedReference items: - uid: CapyKit.Helpers.CalculationHelper commentId: T:CapyKit.Helpers.CalculationHelper id: CalculationHelper parent: CapyKit.Helpers children: - CapyKit.Helpers.CalculationHelper.CalculateHash(System.String) - CapyKit.Helpers.CalculationHelper.CalculateHexHash(System.String) - CapyKit.Helpers.CalculationHelper.DegreesToRadians(System.Double) - CapyKit.Helpers.CalculationHelper.EARTH_RADIUS_KILOMETERS - CapyKit.Helpers.CalculationHelper.GetDistance(System.Decimal,System.Decimal,System.Decimal,System.Decimal,CapyKit.Enumerations.MeasurementSystem) - CapyKit.Helpers.CalculationHelper.GetDistance(System.Double,System.Double,System.Double,System.Double,CapyKit.Enumerations.MeasurementSystem) - CapyKit.Helpers.CalculationHelper.KilometersToMiles(System.Double) - CapyKit.Helpers.CalculationHelper.MILES_PER_KILOMETER - CapyKit.Helpers.CalculationHelper.MilesToKilometers(System.Double) - CapyKit.Helpers.CalculationHelper.RadiansToDegrees(System.Double) langs: - csharp - vb name: CalculationHelper nameWithType: CalculationHelper fullName: CapyKit.Helpers.CalculationHelper type: Class source: remote: path: CapyKit/Helpers/CalculationHelper.cs branch: main repo: https://git.jordanwages.com/wagesj45/CapyKit.git id: CalculationHelper path: ../CapyKit/Helpers/CalculationHelper.cs startLine: 11 assemblies: - CapyKit namespace: CapyKit.Helpers summary: Static class providing helper methods for various calculations. example: [] syntax: content: public static class CalculationHelper content.vb: Public Module CalculationHelper inheritance: - System.Object inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) - System.Object.GetHashCode - System.Object.GetType - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString - uid: CapyKit.Helpers.CalculationHelper.EARTH_RADIUS_KILOMETERS commentId: F:CapyKit.Helpers.CalculationHelper.EARTH_RADIUS_KILOMETERS id: EARTH_RADIUS_KILOMETERS parent: CapyKit.Helpers.CalculationHelper langs: - csharp - vb name: EARTH_RADIUS_KILOMETERS nameWithType: CalculationHelper.EARTH_RADIUS_KILOMETERS fullName: CapyKit.Helpers.CalculationHelper.EARTH_RADIUS_KILOMETERS type: Field source: remote: path: CapyKit/Helpers/CalculationHelper.cs branch: main repo: https://git.jordanwages.com/wagesj45/CapyKit.git id: EARTH_RADIUS_KILOMETERS path: ../CapyKit/Helpers/CalculationHelper.cs startLine: 16 assemblies: - CapyKit namespace: CapyKit.Helpers summary: The earth's radius in kilometers. example: [] syntax: content: public const int EARTH_RADIUS_KILOMETERS = 6371 return: type: System.Int32 content.vb: Public Const EARTH_RADIUS_KILOMETERS As Integer = 6371 - uid: CapyKit.Helpers.CalculationHelper.MILES_PER_KILOMETER commentId: F:CapyKit.Helpers.CalculationHelper.MILES_PER_KILOMETER id: MILES_PER_KILOMETER parent: CapyKit.Helpers.CalculationHelper langs: - csharp - vb name: MILES_PER_KILOMETER nameWithType: CalculationHelper.MILES_PER_KILOMETER fullName: CapyKit.Helpers.CalculationHelper.MILES_PER_KILOMETER type: Field source: remote: path: CapyKit/Helpers/CalculationHelper.cs branch: main repo: https://git.jordanwages.com/wagesj45/CapyKit.git id: MILES_PER_KILOMETER path: ../CapyKit/Helpers/CalculationHelper.cs startLine: 19 assemblies: - CapyKit namespace: CapyKit.Helpers summary: Ratio of miles per kilometer . example: [] syntax: content: public const double MILES_PER_KILOMETER = 0.621371 return: type: System.Double content.vb: Public Const MILES_PER_KILOMETER As Double = 0.621371 - uid: CapyKit.Helpers.CalculationHelper.CalculateHash(System.String) commentId: M:CapyKit.Helpers.CalculationHelper.CalculateHash(System.String) id: CalculateHash(System.String) parent: CapyKit.Helpers.CalculationHelper langs: - csharp - vb name: CalculateHash(string) nameWithType: CalculationHelper.CalculateHash(string) fullName: CapyKit.Helpers.CalculationHelper.CalculateHash(string) type: Method source: remote: path: CapyKit/Helpers/CalculationHelper.cs branch: main repo: https://git.jordanwages.com/wagesj45/CapyKit.git id: CalculateHash path: ../CapyKit/Helpers/CalculationHelper.cs startLine: 37 assemblies: - CapyKit namespace: CapyKit.Helpers summary: Calculates the hash of a given string using an value as the first 32 bits. remarks: >- This method is used for a quick and consistent hash function. It should not be considered cryptographically sound or used in security contexts. example: [] syntax: content: public static int CalculateHash(string str) parameters: - id: str type: System.String description: The string to be hashed. return: type: System.Int32 description: The calculated hash. content.vb: Public Shared Function CalculateHash(str As String) As Integer overload: CapyKit.Helpers.CalculationHelper.CalculateHash* nameWithType.vb: CalculationHelper.CalculateHash(String) fullName.vb: CapyKit.Helpers.CalculationHelper.CalculateHash(String) name.vb: CalculateHash(String) - uid: CapyKit.Helpers.CalculationHelper.CalculateHexHash(System.String) commentId: M:CapyKit.Helpers.CalculationHelper.CalculateHexHash(System.String) id: CalculateHexHash(System.String) parent: CapyKit.Helpers.CalculationHelper langs: - csharp - vb name: CalculateHexHash(string) nameWithType: CalculationHelper.CalculateHexHash(string) fullName: CapyKit.Helpers.CalculationHelper.CalculateHexHash(string) type: Method source: remote: path: CapyKit/Helpers/CalculationHelper.cs branch: main repo: https://git.jordanwages.com/wagesj45/CapyKit.git id: CalculateHexHash path: ../CapyKit/Helpers/CalculationHelper.cs startLine: 49 assemblies: - CapyKit namespace: CapyKit.Helpers summary: Calculates the hexadecimal hash. example: [] syntax: content: public static string CalculateHexHash(string str) parameters: - id: str type: System.String description: The string to be hashed. return: type: System.String description: The calculated 16 character hexadecimal hash. content.vb: Public Shared Function CalculateHexHash(str As String) As String overload: CapyKit.Helpers.CalculationHelper.CalculateHexHash* nameWithType.vb: CalculationHelper.CalculateHexHash(String) fullName.vb: CapyKit.Helpers.CalculationHelper.CalculateHexHash(String) name.vb: CalculateHexHash(String) - uid: CapyKit.Helpers.CalculationHelper.GetDistance(System.Decimal,System.Decimal,System.Decimal,System.Decimal,CapyKit.Enumerations.MeasurementSystem) commentId: M:CapyKit.Helpers.CalculationHelper.GetDistance(System.Decimal,System.Decimal,System.Decimal,System.Decimal,CapyKit.Enumerations.MeasurementSystem) id: GetDistance(System.Decimal,System.Decimal,System.Decimal,System.Decimal,CapyKit.Enumerations.MeasurementSystem) parent: CapyKit.Helpers.CalculationHelper langs: - csharp - vb name: GetDistance(decimal, decimal, decimal, decimal, MeasurementSystem) nameWithType: CalculationHelper.GetDistance(decimal, decimal, decimal, decimal, MeasurementSystem) fullName: CapyKit.Helpers.CalculationHelper.GetDistance(decimal, decimal, decimal, decimal, CapyKit.Enumerations.MeasurementSystem) type: Method source: remote: path: CapyKit/Helpers/CalculationHelper.cs branch: main repo: https://git.jordanwages.com/wagesj45/CapyKit.git id: GetDistance path: ../CapyKit/Helpers/CalculationHelper.cs startLine: 82 assemblies: - CapyKit namespace: CapyKit.Helpers summary: Gets the distance between two points on earth using the haversine formula. remarks: >- Uses the haversine formula to calculate the "as-the-crow-flies" distance between two points on earth. example: [] syntax: content: public static decimal GetDistance(decimal latitudeOrigin, decimal longitudeOrigin, decimal latitudeDestination, decimal longitudeDestination, MeasurementSystem measurementSystem = MeasurementSystem.Imperial) parameters: - id: latitudeOrigin type: System.Decimal description: The latitude origin. - id: longitudeOrigin type: System.Decimal description: The longitude origin. - id: latitudeDestination type: System.Decimal description: The latitude destination. - id: longitudeDestination type: System.Decimal description: The longitude destination. - id: measurementSystem type: CapyKit.Enumerations.MeasurementSystem description: (Optional) The measurement system. return: type: System.Decimal description: The distance. content.vb: Public Shared Function GetDistance(latitudeOrigin As Decimal, longitudeOrigin As Decimal, latitudeDestination As Decimal, longitudeDestination As Decimal, measurementSystem As MeasurementSystem = MeasurementSystem.Imperial) As Decimal overload: CapyKit.Helpers.CalculationHelper.GetDistance* seealso: - linkId: CapyKit.Helpers.CalculationHelper.GetDistance(System.Double,System.Double,System.Double,System.Double,CapyKit.Enumerations.MeasurementSystem) commentId: M:CapyKit.Helpers.CalculationHelper.GetDistance(System.Double,System.Double,System.Double,System.Double,CapyKit.Enumerations.MeasurementSystem) nameWithType.vb: CalculationHelper.GetDistance(Decimal, Decimal, Decimal, Decimal, MeasurementSystem) fullName.vb: CapyKit.Helpers.CalculationHelper.GetDistance(Decimal, Decimal, Decimal, Decimal, CapyKit.Enumerations.MeasurementSystem) name.vb: GetDistance(Decimal, Decimal, Decimal, Decimal, MeasurementSystem) - uid: CapyKit.Helpers.CalculationHelper.GetDistance(System.Double,System.Double,System.Double,System.Double,CapyKit.Enumerations.MeasurementSystem) commentId: M:CapyKit.Helpers.CalculationHelper.GetDistance(System.Double,System.Double,System.Double,System.Double,CapyKit.Enumerations.MeasurementSystem) id: GetDistance(System.Double,System.Double,System.Double,System.Double,CapyKit.Enumerations.MeasurementSystem) parent: CapyKit.Helpers.CalculationHelper langs: - csharp - vb name: GetDistance(double, double, double, double, MeasurementSystem) nameWithType: CalculationHelper.GetDistance(double, double, double, double, MeasurementSystem) fullName: CapyKit.Helpers.CalculationHelper.GetDistance(double, double, double, double, CapyKit.Enumerations.MeasurementSystem) type: Method source: remote: path: CapyKit/Helpers/CalculationHelper.cs branch: main repo: https://git.jordanwages.com/wagesj45/CapyKit.git id: GetDistance path: ../CapyKit/Helpers/CalculationHelper.cs startLine: 105 assemblies: - CapyKit namespace: CapyKit.Helpers summary: Gets the distance between two points on earth using the haversine formula. remarks: >- Uses the haversine formula to calculate the "as-the-crow-flies" distance between two points on earth. example: [] syntax: content: public static double GetDistance(double latitudeOrigin, double longitudeOrigin, double latitudeDestination, double longitudeDestination, MeasurementSystem measurementSystem = MeasurementSystem.Imperial) parameters: - id: latitudeOrigin type: System.Double description: The latitude of the origin. - id: longitudeOrigin type: System.Double description: The longitude of the origin. - id: latitudeDestination type: System.Double description: The latitude destination. - id: longitudeDestination type: System.Double description: The longitude destination. - id: measurementSystem type: CapyKit.Enumerations.MeasurementSystem description: (Optional) The measurement system. return: type: System.Double description: The distance. content.vb: Public Shared Function GetDistance(latitudeOrigin As Double, longitudeOrigin As Double, latitudeDestination As Double, longitudeDestination As Double, measurementSystem As MeasurementSystem = MeasurementSystem.Imperial) As Double overload: CapyKit.Helpers.CalculationHelper.GetDistance* nameWithType.vb: CalculationHelper.GetDistance(Double, Double, Double, Double, MeasurementSystem) fullName.vb: CapyKit.Helpers.CalculationHelper.GetDistance(Double, Double, Double, Double, CapyKit.Enumerations.MeasurementSystem) name.vb: GetDistance(Double, Double, Double, Double, MeasurementSystem) - uid: CapyKit.Helpers.CalculationHelper.KilometersToMiles(System.Double) commentId: M:CapyKit.Helpers.CalculationHelper.KilometersToMiles(System.Double) id: KilometersToMiles(System.Double) parent: CapyKit.Helpers.CalculationHelper langs: - csharp - vb name: KilometersToMiles(double) nameWithType: CalculationHelper.KilometersToMiles(double) fullName: CapyKit.Helpers.CalculationHelper.KilometersToMiles(double) type: Method source: remote: path: CapyKit/Helpers/CalculationHelper.cs branch: main repo: https://git.jordanwages.com/wagesj45/CapyKit.git id: KilometersToMiles path: ../CapyKit/Helpers/CalculationHelper.cs startLine: 128 assemblies: - CapyKit namespace: CapyKit.Helpers summary: Converts kilometers to miles. example: [] syntax: content: public static double KilometersToMiles(double kilometers) parameters: - id: kilometers type: System.Double description: The value in kilometers. return: type: System.Double description: The value in miles. content.vb: Public Shared Function KilometersToMiles(kilometers As Double) As Double overload: CapyKit.Helpers.CalculationHelper.KilometersToMiles* nameWithType.vb: CalculationHelper.KilometersToMiles(Double) fullName.vb: CapyKit.Helpers.CalculationHelper.KilometersToMiles(Double) name.vb: KilometersToMiles(Double) - uid: CapyKit.Helpers.CalculationHelper.MilesToKilometers(System.Double) commentId: M:CapyKit.Helpers.CalculationHelper.MilesToKilometers(System.Double) id: MilesToKilometers(System.Double) parent: CapyKit.Helpers.CalculationHelper langs: - csharp - vb name: MilesToKilometers(double) nameWithType: CalculationHelper.MilesToKilometers(double) fullName: CapyKit.Helpers.CalculationHelper.MilesToKilometers(double) type: Method source: remote: path: CapyKit/Helpers/CalculationHelper.cs branch: main repo: https://git.jordanwages.com/wagesj45/CapyKit.git id: MilesToKilometers path: ../CapyKit/Helpers/CalculationHelper.cs startLine: 136 assemblies: - CapyKit namespace: CapyKit.Helpers summary: Converts miles to kilometers. example: [] syntax: content: public static double MilesToKilometers(double miles) parameters: - id: miles type: System.Double description: The value in miles. return: type: System.Double description: The value in kilometers. content.vb: Public Shared Function MilesToKilometers(miles As Double) As Double overload: CapyKit.Helpers.CalculationHelper.MilesToKilometers* nameWithType.vb: CalculationHelper.MilesToKilometers(Double) fullName.vb: CapyKit.Helpers.CalculationHelper.MilesToKilometers(Double) name.vb: MilesToKilometers(Double) - uid: CapyKit.Helpers.CalculationHelper.DegreesToRadians(System.Double) commentId: M:CapyKit.Helpers.CalculationHelper.DegreesToRadians(System.Double) id: DegreesToRadians(System.Double) parent: CapyKit.Helpers.CalculationHelper langs: - csharp - vb name: DegreesToRadians(double) nameWithType: CalculationHelper.DegreesToRadians(double) fullName: CapyKit.Helpers.CalculationHelper.DegreesToRadians(double) type: Method source: remote: path: CapyKit/Helpers/CalculationHelper.cs branch: main repo: https://git.jordanwages.com/wagesj45/CapyKit.git id: DegreesToRadians path: ../CapyKit/Helpers/CalculationHelper.cs startLine: 144 assemblies: - CapyKit namespace: CapyKit.Helpers summary: Convers degrees to radians. example: [] syntax: content: public static double DegreesToRadians(double degrees) parameters: - id: degrees type: System.Double description: The degree value. return: type: System.Double description: The value as radians. content.vb: Public Shared Function DegreesToRadians(degrees As Double) As Double overload: CapyKit.Helpers.CalculationHelper.DegreesToRadians* nameWithType.vb: CalculationHelper.DegreesToRadians(Double) fullName.vb: CapyKit.Helpers.CalculationHelper.DegreesToRadians(Double) name.vb: DegreesToRadians(Double) - uid: CapyKit.Helpers.CalculationHelper.RadiansToDegrees(System.Double) commentId: M:CapyKit.Helpers.CalculationHelper.RadiansToDegrees(System.Double) id: RadiansToDegrees(System.Double) parent: CapyKit.Helpers.CalculationHelper langs: - csharp - vb name: RadiansToDegrees(double) nameWithType: CalculationHelper.RadiansToDegrees(double) fullName: CapyKit.Helpers.CalculationHelper.RadiansToDegrees(double) type: Method source: remote: path: CapyKit/Helpers/CalculationHelper.cs branch: main repo: https://git.jordanwages.com/wagesj45/CapyKit.git id: RadiansToDegrees path: ../CapyKit/Helpers/CalculationHelper.cs startLine: 152 assemblies: - CapyKit namespace: CapyKit.Helpers summary: Converts radians to degrees. example: [] syntax: content: public static double RadiansToDegrees(double radians) parameters: - id: radians type: System.Double description: The radian value. return: type: System.Double description: The value as degrees. content.vb: Public Shared Function RadiansToDegrees(radians As Double) As Double overload: CapyKit.Helpers.CalculationHelper.RadiansToDegrees* nameWithType.vb: CalculationHelper.RadiansToDegrees(Double) fullName.vb: CapyKit.Helpers.CalculationHelper.RadiansToDegrees(Double) name.vb: RadiansToDegrees(Double) references: - uid: CapyKit.Helpers commentId: N:CapyKit.Helpers href: CapyKit.html name: CapyKit.Helpers nameWithType: CapyKit.Helpers fullName: CapyKit.Helpers spec.csharp: - uid: CapyKit name: CapyKit href: CapyKit.html - name: . - uid: CapyKit.Helpers name: Helpers href: CapyKit.Helpers.html spec.vb: - uid: CapyKit name: CapyKit href: CapyKit.html - name: . - uid: CapyKit.Helpers name: Helpers href: CapyKit.Helpers.html - uid: System.Object commentId: T:System.Object parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object name: object nameWithType: object fullName: object nameWithType.vb: Object fullName.vb: Object name.vb: Object - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) name: Equals(object) nameWithType: object.Equals(object) fullName: object.Equals(object) nameWithType.vb: Object.Equals(Object) fullName.vb: Object.Equals(Object) name.vb: Equals(Object) spec.csharp: - uid: System.Object.Equals(System.Object) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: System.Object.Equals(System.Object) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: System.Object.Equals(System.Object,System.Object) commentId: M:System.Object.Equals(System.Object,System.Object) parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) name: Equals(object, object) nameWithType: object.Equals(object, object) fullName: object.Equals(object, object) nameWithType.vb: Object.Equals(Object, Object) fullName.vb: Object.Equals(Object, Object) name.vb: Equals(Object, Object) spec.csharp: - uid: System.Object.Equals(System.Object,System.Object) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: System.Object.Equals(System.Object,System.Object) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: System.Object.GetHashCode commentId: M:System.Object.GetHashCode parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode name: GetHashCode() nameWithType: object.GetHashCode() fullName: object.GetHashCode() nameWithType.vb: Object.GetHashCode() fullName.vb: Object.GetHashCode() spec.csharp: - uid: System.Object.GetHashCode name: GetHashCode isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: ( - name: ) spec.vb: - uid: System.Object.GetHashCode name: GetHashCode isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: ( - name: ) - uid: System.Object.GetType commentId: M:System.Object.GetType parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gettype name: GetType() nameWithType: object.GetType() fullName: object.GetType() nameWithType.vb: Object.GetType() fullName.vb: Object.GetType() spec.csharp: - uid: System.Object.GetType name: GetType isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: ( - name: ) spec.vb: - uid: System.Object.GetType name: GetType isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: ( - name: ) - uid: System.Object.MemberwiseClone commentId: M:System.Object.MemberwiseClone parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone name: MemberwiseClone() nameWithType: object.MemberwiseClone() fullName: object.MemberwiseClone() nameWithType.vb: Object.MemberwiseClone() fullName.vb: Object.MemberwiseClone() spec.csharp: - uid: System.Object.MemberwiseClone name: MemberwiseClone isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: ( - name: ) spec.vb: - uid: System.Object.MemberwiseClone name: MemberwiseClone isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: ( - name: ) - uid: System.Object.ReferenceEquals(System.Object,System.Object) commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals name: ReferenceEquals(object, object) nameWithType: object.ReferenceEquals(object, object) fullName: object.ReferenceEquals(object, object) nameWithType.vb: Object.ReferenceEquals(Object, Object) fullName.vb: Object.ReferenceEquals(Object, Object) name.vb: ReferenceEquals(Object, Object) spec.csharp: - uid: System.Object.ReferenceEquals(System.Object,System.Object) name: ReferenceEquals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: System.Object.ReferenceEquals(System.Object,System.Object) name: ReferenceEquals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: System.Object.ToString commentId: M:System.Object.ToString parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.tostring name: ToString() nameWithType: object.ToString() fullName: object.ToString() nameWithType.vb: Object.ToString() fullName.vb: Object.ToString() spec.csharp: - uid: System.Object.ToString name: ToString isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ( - name: ) spec.vb: - uid: System.Object.ToString name: ToString isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ( - name: ) - uid: System commentId: N:System isExternal: true href: https://learn.microsoft.com/dotnet/api/system name: System nameWithType: System fullName: System - uid: System.Int32 commentId: T:System.Int32 parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 name: int nameWithType: int fullName: int nameWithType.vb: Integer fullName.vb: Integer name.vb: Integer - uid: System.Double commentId: T:System.Double parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.double name: double nameWithType: double fullName: double nameWithType.vb: Double fullName.vb: Double name.vb: Double - uid: System.Security.Cryptography.MD5 commentId: T:System.Security.Cryptography.MD5 isExternal: true href: https://learn.microsoft.com/dotnet/api/system.security.cryptography.md5 name: MD5 nameWithType: MD5 fullName: System.Security.Cryptography.MD5 - uid: CapyKit.Helpers.CalculationHelper.CalculateHash* commentId: Overload:CapyKit.Helpers.CalculationHelper.CalculateHash href: CapyKit.Helpers.CalculationHelper.html#CapyKit_Helpers_CalculationHelper_CalculateHash_System_String_ name: CalculateHash nameWithType: CalculationHelper.CalculateHash fullName: CapyKit.Helpers.CalculationHelper.CalculateHash - uid: System.String commentId: T:System.String parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string name: string nameWithType: string fullName: string nameWithType.vb: String fullName.vb: String name.vb: String - uid: CapyKit.Helpers.CalculationHelper.CalculateHexHash* commentId: Overload:CapyKit.Helpers.CalculationHelper.CalculateHexHash href: CapyKit.Helpers.CalculationHelper.html#CapyKit_Helpers_CalculationHelper_CalculateHexHash_System_String_ name: CalculateHexHash nameWithType: CalculationHelper.CalculateHexHash fullName: CapyKit.Helpers.CalculationHelper.CalculateHexHash - uid: CapyKit.Helpers.CalculationHelper.GetDistance(System.Double,System.Double,System.Double,System.Double,CapyKit.Enumerations.MeasurementSystem) commentId: M:CapyKit.Helpers.CalculationHelper.GetDistance(System.Double,System.Double,System.Double,System.Double,CapyKit.Enumerations.MeasurementSystem) isExternal: true href: CapyKit.Helpers.CalculationHelper.html#CapyKit_Helpers_CalculationHelper_GetDistance_System_Double_System_Double_System_Double_System_Double_CapyKit_Enumerations_MeasurementSystem_ name: GetDistance(double, double, double, double, MeasurementSystem) nameWithType: CalculationHelper.GetDistance(double, double, double, double, MeasurementSystem) fullName: CapyKit.Helpers.CalculationHelper.GetDistance(double, double, double, double, CapyKit.Enumerations.MeasurementSystem) nameWithType.vb: CalculationHelper.GetDistance(Double, Double, Double, Double, MeasurementSystem) fullName.vb: CapyKit.Helpers.CalculationHelper.GetDistance(Double, Double, Double, Double, CapyKit.Enumerations.MeasurementSystem) name.vb: GetDistance(Double, Double, Double, Double, MeasurementSystem) spec.csharp: - uid: CapyKit.Helpers.CalculationHelper.GetDistance(System.Double,System.Double,System.Double,System.Double,CapyKit.Enumerations.MeasurementSystem) name: GetDistance href: CapyKit.Helpers.CalculationHelper.html#CapyKit_Helpers_CalculationHelper_GetDistance_System_Double_System_Double_System_Double_System_Double_CapyKit_Enumerations_MeasurementSystem_ - name: ( - uid: System.Double name: double isExternal: true href: https://learn.microsoft.com/dotnet/api/system.double - name: ',' - name: " " - uid: System.Double name: double isExternal: true href: https://learn.microsoft.com/dotnet/api/system.double - name: ',' - name: " " - uid: System.Double name: double isExternal: true href: https://learn.microsoft.com/dotnet/api/system.double - name: ',' - name: " " - uid: System.Double name: double isExternal: true href: https://learn.microsoft.com/dotnet/api/system.double - name: ',' - name: " " - uid: CapyKit.Enumerations.MeasurementSystem name: MeasurementSystem href: CapyKit.Enumerations.MeasurementSystem.html - name: ) spec.vb: - uid: CapyKit.Helpers.CalculationHelper.GetDistance(System.Double,System.Double,System.Double,System.Double,CapyKit.Enumerations.MeasurementSystem) name: GetDistance href: CapyKit.Helpers.CalculationHelper.html#CapyKit_Helpers_CalculationHelper_GetDistance_System_Double_System_Double_System_Double_System_Double_CapyKit_Enumerations_MeasurementSystem_ - name: ( - uid: System.Double name: Double isExternal: true href: https://learn.microsoft.com/dotnet/api/system.double - name: ',' - name: " " - uid: System.Double name: Double isExternal: true href: https://learn.microsoft.com/dotnet/api/system.double - name: ',' - name: " " - uid: System.Double name: Double isExternal: true href: https://learn.microsoft.com/dotnet/api/system.double - name: ',' - name: " " - uid: System.Double name: Double isExternal: true href: https://learn.microsoft.com/dotnet/api/system.double - name: ',' - name: " " - uid: CapyKit.Enumerations.MeasurementSystem name: MeasurementSystem href: CapyKit.Enumerations.MeasurementSystem.html - name: ) - uid: CapyKit.Helpers.CalculationHelper.GetDistance* commentId: Overload:CapyKit.Helpers.CalculationHelper.GetDistance href: CapyKit.Helpers.CalculationHelper.html#CapyKit_Helpers_CalculationHelper_GetDistance_System_Decimal_System_Decimal_System_Decimal_System_Decimal_CapyKit_Enumerations_MeasurementSystem_ name: GetDistance nameWithType: CalculationHelper.GetDistance fullName: CapyKit.Helpers.CalculationHelper.GetDistance - uid: System.Decimal commentId: T:System.Decimal parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.decimal name: decimal nameWithType: decimal fullName: decimal nameWithType.vb: Decimal fullName.vb: Decimal name.vb: Decimal - uid: CapyKit.Enumerations.MeasurementSystem commentId: T:CapyKit.Enumerations.MeasurementSystem parent: CapyKit.Enumerations href: CapyKit.Enumerations.MeasurementSystem.html name: MeasurementSystem nameWithType: MeasurementSystem fullName: CapyKit.Enumerations.MeasurementSystem - uid: CapyKit.Enumerations commentId: N:CapyKit.Enumerations href: CapyKit.html name: CapyKit.Enumerations nameWithType: CapyKit.Enumerations fullName: CapyKit.Enumerations spec.csharp: - uid: CapyKit name: CapyKit href: CapyKit.html - name: . - uid: CapyKit.Enumerations name: Enumerations href: CapyKit.Enumerations.html spec.vb: - uid: CapyKit name: CapyKit href: CapyKit.html - name: . - uid: CapyKit.Enumerations name: Enumerations href: CapyKit.Enumerations.html - uid: CapyKit.Helpers.CalculationHelper.KilometersToMiles* commentId: Overload:CapyKit.Helpers.CalculationHelper.KilometersToMiles href: CapyKit.Helpers.CalculationHelper.html#CapyKit_Helpers_CalculationHelper_KilometersToMiles_System_Double_ name: KilometersToMiles nameWithType: CalculationHelper.KilometersToMiles fullName: CapyKit.Helpers.CalculationHelper.KilometersToMiles - uid: CapyKit.Helpers.CalculationHelper.MilesToKilometers* commentId: Overload:CapyKit.Helpers.CalculationHelper.MilesToKilometers href: CapyKit.Helpers.CalculationHelper.html#CapyKit_Helpers_CalculationHelper_MilesToKilometers_System_Double_ name: MilesToKilometers nameWithType: CalculationHelper.MilesToKilometers fullName: CapyKit.Helpers.CalculationHelper.MilesToKilometers - uid: CapyKit.Helpers.CalculationHelper.DegreesToRadians* commentId: Overload:CapyKit.Helpers.CalculationHelper.DegreesToRadians href: CapyKit.Helpers.CalculationHelper.html#CapyKit_Helpers_CalculationHelper_DegreesToRadians_System_Double_ name: DegreesToRadians nameWithType: CalculationHelper.DegreesToRadians fullName: CapyKit.Helpers.CalculationHelper.DegreesToRadians - uid: CapyKit.Helpers.CalculationHelper.RadiansToDegrees* commentId: Overload:CapyKit.Helpers.CalculationHelper.RadiansToDegrees href: CapyKit.Helpers.CalculationHelper.html#CapyKit_Helpers_CalculationHelper_RadiansToDegrees_System_Double_ name: RadiansToDegrees nameWithType: CalculationHelper.RadiansToDegrees fullName: CapyKit.Helpers.CalculationHelper.RadiansToDegrees