AspectSharpExample.Application.Main C# (CSharp) Méthode

Main() public static méthode

public static Main ( ) : void
Résultat void
		public static void Main()
		{
			// First we're going to execute two content providers and
			// display the contents using the PlainTextView
			SimpleExecution();

			// Now we're going to execute adding a security
			// mixin to content providers and security checking through 
			// interceptors
			MixinAndInterceptorExecution();

			// Altering the Hashtable
			HashtableTest();

			Console.WriteLine("\r\nPress any key to exit." );
			Console.ReadLine();
		}