Analyzer.EdgeReciprocationCalculator.GetDictionaryKey C# (CSharp) Method

GetDictionaryKey() protected method

protected GetDictionaryKey ( IVertex oVertex1, IVertex oVertex2 ) : System.Int64
oVertex1 IVertex
oVertex2 IVertex
return System.Int64
        protected Int64 GetDictionaryKey(IVertex oVertex1, IVertex oVertex2)
        {
            Debug.Assert(oVertex1 != null);
            Debug.Assert(oVertex2 != null);

            return (CollectionUtil.GetDictionaryKey(oVertex1.ID, oVertex2.ID,
                true));
        }