HashCodeCombiner.Add Method

Definition

Overloads

Add(Int32)
Add(Object)
Add(String)
Add<TValue>(TValue, IEqualityComparer<TValue>)

Add(Int32)

Source:
HashCodeCombiner.cs
Source:
HashCodeCombiner.cs
Source:
HashCodeCombiner.cs
Source:
HashCodeCombiner.cs
public:
 void Add(int i);
public void Add (int i);
member this.Add : int -> unit
Public Sub Add (i As Integer)

Parameters

i
Int32

Applies to

Add(Object)

Source:
HashCodeCombiner.cs
Source:
HashCodeCombiner.cs
Source:
HashCodeCombiner.cs
Source:
HashCodeCombiner.cs
public:
 void Add(System::Object ^ o);
public void Add (object o);
public void Add (object? o);
member this.Add : obj -> unit
Public Sub Add (o As Object)

Parameters

o
Object

Applies to

Add(String)

Source:
HashCodeCombiner.cs
Source:
HashCodeCombiner.cs
Source:
HashCodeCombiner.cs
Source:
HashCodeCombiner.cs
public:
 void Add(System::String ^ s);
public void Add (string s);
public void Add (string? s);
member this.Add : string -> unit
Public Sub Add (s As String)

Parameters

s
String

Applies to

Add<TValue>(TValue, IEqualityComparer<TValue>)

Source:
HashCodeCombiner.cs
Source:
HashCodeCombiner.cs
Source:
HashCodeCombiner.cs
Source:
HashCodeCombiner.cs
public:
generic <typename TValue>
 void Add(TValue value, System::Collections::Generic::IEqualityComparer<TValue> ^ comparer);
public void Add<TValue> (TValue value, System.Collections.Generic.IEqualityComparer<TValue> comparer);
public void Add<TValue> (TValue? value, System.Collections.Generic.IEqualityComparer<TValue> comparer);
member this.Add : 'Value * System.Collections.Generic.IEqualityComparer<'Value> -> unit
Public Sub Add(Of TValue) (value As TValue, comparer As IEqualityComparer(Of TValue))

Type Parameters

TValue

Parameters

value
TValue
comparer
IEqualityComparer<TValue>

Applies to