Struct PivotNull
Represents a null value in a pivot table caches shared items list.
Implements
System.Collections.Generic.IEqualityComparer<PivotNull>
Inherited Members
System.ValueType.GetHashCode()
System.Object.Equals(System.Object, System.Object)
System.Object.GetType()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: OfficeOpenXml.Table.PivotTable
Assembly: EPPlus.dll
Syntax
public struct PivotNull : IEqualityComparer<PivotNull>
Methods
Equals(PivotNull, PivotNull)
Check equals. Always true
Declaration
public bool Equals(PivotNull x, PivotNull y)
Parameters
Type | Name | Description |
---|---|---|
PivotNull | x | The first object |
PivotNull | y | The second object |
Returns
Type | Description |
---|---|
System.Boolean |
Equals(Object)
Check equals with another object
Declaration
public override bool Equals(object obj)
Parameters
Type | Name | Description |
---|---|---|
System.Object | obj | The object |
Returns
Type | Description |
---|---|
System.Boolean | True if the obj is null |
Overrides
System.ValueType.Equals(System.Object)
GetHashCode(PivotNull)
The hash value for the object
Declaration
public int GetHashCode(PivotNull obj)
Parameters
Type | Name | Description |
---|---|---|
PivotNull | obj |
Returns
Type | Description |
---|---|
System.Int32 |
ToString()
Return the string representation of the pivot null value
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | An empty string |
Overrides
System.ValueType.ToString()
Implements
System.Collections.Generic.IEqualityComparer<T>