hi
Creating a Private Assembly
1. in the class library add a method called TestMethod that will show a message box saying "Hello World!". In this example I have changed the default namespace and class name to better reflect the purpose of the assembly.
using System;
using System.Text;
using System.Windows.Forms;
namespace TestClassLibrary
{
public static class TestClass
{
public static void TestMethod()
{
MessageBox.Show("Hello World");
}
}
}
2.Add a console application project to the current solution and set it as the default start-up project. This will cause the console application to run when we click on play or launch the project. Let's try and use the method we just created:
using System;
using System.Collections.Generic;
using System.Text;
using TestClassLibrary;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
TestClass.TestMethod();
}
}
}
how to create strong key pair
how to launch Visual Stuadio Command Prompt in public Assembly
If it helps/directs you towards the solution,Mark This Response as Answer link
--
Rajesh