English 中文(简体)
是否可以改变车号? [闭门]
原标题:is it posible change the namespace of a dll? [closed]
  • 时间:2012-01-12 16:54:37
  •  标签:
  • c#
  • dll

well i am working for PocketPc and it has a library (System.data) and (System.data.sqlclient) then THEY are not complete libraries then i need use System.data (the complete library) but now i have 2 dll s calls (System.data) and the complete library has System.data.sqlclient too, then i have problem with them, so if i only use the complete library i have another problem, cuz the System.data( no complete library) has one thing wich System.data(Complete library) doesn t have, so i need use 2 dlls (with same namespace) and i have problems...

最佳回答

inMSDN and a tutorial在视觉演播室使用。

从指挥系统编中,参考资料被宣布为:

/r:SystDataOfficial=System.Data.dll
/r:SystDataOther=data.dll

之后,在您的法典中:

extern alias SystDataOfficial;
extern alias SystDataOther;

var c = new SystDataOfficial::System.Data.SqlClient();

你们还可以把lls作为 alia子之一,通常使用另一 the。

请注意,这些赢得的类型可以一起使用。 这部法律赢得了以下工作:

// Expect SystDataOfficial::SomeConstant
SystDataOfficial::System.Data.SqlClient.SomeMethod(SystDataOther::SomeConstant);
问题回答

是,见

http://msdn.microsoft.com/en-us/library/ms173212.aspx>rel=“nofollow”>extern alias (C# Reference)

但是,它们仍然是不同类型的,而你却通过自己制造的物体去做其他方法。





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签