Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Operator: bool operator==(JsonNoValue, JsonNoValue)

Declaration

public static bool operator==(
    JsonNoValue one,
    JsonNoValue two
)

Summary

Always returns true.

Remarks

This operator can only be invoked in three ways:

  • JsonNoValue.Instance == JsonNoValue.Instance
  • JsonNoValue.Instance == null
  • null == JsonNoValue.Instance

In all three cases, the intended comparison is true.