Microsoft.ApplicationInsights.Metrics.MetricSeriesConfigurationForNaiveDistinctCount.Equals(Microsoft.ApplicationInsights.Metrics.MetricSeriesConfigurationForNaiveDistinctCount)

Here are the examples of the csharp api class Microsoft.ApplicationInsights.Metrics.MetricSeriesConfigurationForNaiveDistinctCount.Equals(Microsoft.ApplicationInsights.Metrics.MetricSeriesConfigurationForNaiveDistinctCount) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: ApplicationInsights-SDK-Labs
Source File: MetricSeriesConfigurationForNaiveDistinctCount.cs
public override bool Equals(object other)
        {
            if (other != null)
            {
                var otherConfig = other as MetricSeriesConfigurationForNaiveDistinctCount;
                if (otherConfig != null)
                {
                    return Equals(otherConfig);
                }
            }

            return false;
        }