listen i got to compile one file to a dll and one to an exe
all in one project
so i got 1 file called
// File: main.cs
using UtilityMethods;
class TestCode
{
static void Main(string[] args)
{
System.Console.WriteLine(add(2,3));
}
}
// add.cs
using System;
namespace MyMethods
{
public class MultiplyClass
{
public static int add(int x, int y)
{
return (x+y);
}
}
}
when i compile i am getting only the exe file and not the dll
so i cant use the dll funcs!!
i am using visual C# express
can anybody help me with this one???
i heard i have to add some command but i have no idea where to add it and what command i am freaked off
help me lol please