ME3Explorer.TalkFile.CompareTlkStringRef C# (CSharp) Method

CompareTlkStringRef() private static method

private static CompareTlkStringRef ( TLKStringRef strRef1, TLKStringRef strRef2 ) : int
strRef1 TLKStringRef
strRef2 TLKStringRef
return int
        private static int CompareTlkStringRef(TLKStringRef strRef1, TLKStringRef strRef2)
        {
            int result = strRef1.StringID.CompareTo(strRef2.StringID);
            return result;
        }
    }