if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[BasicInformation]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[BasicInformation]
GO
在某一WEB METHOD中,被调用返回一个STRING
Assembly a = Assembly.LoadFile(@"E:\JasonBackUp\StorePictureIntoSql\MyDll\bin\Debug\MyDll.dll");
Type t = a.GetType("MyDll.Class1");
string b = "";
b = t.GetField("Number").GetValue(b).ToString();
return b;