My Library Part1 C# with Example



My Library Part1 C# with Example

 	using System;

	namespace MyLibrary
	{
		public class MyNewClassType 
		{
			public void Display()
			{
				Console.WriteLine("Namespace: MyLibrary \tClass: MyNewClassType");
			}
		}
	}
 

0 Comment's

Comment Form