| 
            
              DiffMatchPatchDiffCommonSuffix Method
             | 
          
        
        
            Determine the common suffix of two strings.
            
        
        Namespace: GSF.TextAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.257-beta+00aa2366fbb9ec75f636ebc7cfa610e3826a727c
Syntaxpublic int DiffCommonSuffix(
	string text1,
	string text2
)
Public Function DiffCommonSuffix ( 
	text1 As String,
	text2 As String
) As Integer
public:
int DiffCommonSuffix(
	String^ text1, 
	String^ text2
)
member DiffCommonSuffix : 
        text1 : string * 
        text2 : string -> int function DiffCommonSuffix(text1, text2);
 View SourceParameters
- text1  String
 - First string
 - text2  String
 - Second string
 
Return Value
Int32The number of characters common to the end of each string
See Also