>i am using two versions of a particular dll cust.ll.
>how do i make a class file to refer the two versions of cust.dll.
You can reference both assemblies separately (csc /r:alias=assembly)
and by using the extern alias statement.
>using System;
>public class Client
[quoted text clipped - 6 lines]
> }
>}
This, however, will not work. You'll have two separate cust types, and
you can only call NameTwo on one and NameThree on the other.
Mattias

Signature
Mattias Sjögren [C# MVP] mattias @ mvps.org
http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
Please reply only to the newsgroup.