System.Data.DataTable.IsSuffix C# (CSharp) Method

IsSuffix() private method

private IsSuffix ( string s1, string s2 ) : bool
s1 string
s2 string
return bool
        internal bool IsSuffix(string s1, string s2) => CompareInfo.IsSuffix(s1, s2, _compareFlags);
DataTable