How do i create an assembly...

How do i create an assembly so that i can include it in code i.e.

What is required?

Example:
using System;
using System.etc...;
using My.Own.Assembly;

I would like to keep my objects into an assembly (dll) and call them for usage...

help...

[279 byte] By [RobertGregoryGarfinkle] at [2007-12-22]
# 1

Assuming you are using Visual Studio:
File/Add Project/New Project...

From the dialog, select "Class Library". Put the code you want in that assemply into that library.

In your app, add a reference to the new class library (A project refence would be easiest)

JamesCurran at 2007-8-30 > top of Msdn Tech,Visual C#,Visual C# Language...
# 2
Hi,

Assembly is created automaticaly for each project in your solution. "AssemblyInfo.cs" file.

If you're asking about creating and using DLL files then James is correct...

cheers.

michalmudron at 2007-8-30 > top of Msdn Tech,Visual C#,Visual C# Language...