ArcGIS Pro 2.6 API Reference Guide
Intersects Method (Envelope)
Example 

ArcGIS.Core.Geometry Namespace > Envelope Class : Intersects Method
Envelope to test intersection against.
Determines if this instance intersects the supplied envelope.
Syntax
public bool Intersects( 
   Envelope envelope
)
Public Function Intersects( _
   ByVal envelope As Envelope _
) As Boolean

Parameters

envelope
Envelope to test intersection against.

Return Value

True if the envelopes intersect. False if they do not.
Example
Envelope env1 = EnvelopeBuilder.CreateEnvelope(0, 0, 1, 1, SpatialReferences.WGS84);
Envelope env2 = EnvelopeBuilder.CreateEnvelope(0.5, 0.5, 1.5, 1.5, SpatialReferences.WGS84);

Envelope env3 = env1.Intersection(env2);
bool intersects = env1.Intersects(env2); // true
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 7

See Also

Reference

Envelope Class
Envelope Members
Intersection Method