Click here to Skip to main content
15,892,517 members
Articles / Security / Encryption

Enhanced String Handling II

Rate me:
Please Sign up or sign in to vote.
3.76/5 (11 votes)
16 Dec 2010CPOL2 min read 36.2K   213   15  
Overcoming limitations of: Enhanced String Handling
using System;


namespace EnhancedStringEvaluate
{
	public interface IProcessEvaluate
	{
		/// <summary>
		/// Signature of a standard event driven delegate
		/// This method is used in the ProcessXxx classes
		/// </summary>
		/// <param name="src"></param>
		/// <param name="ea"></param>
		void Evaluate(object src, EnhancedStringEventArgs ea);
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
avifarah@gmail.com

Comments and Discussions