Hi,
Anyone familiar with following error? ?
Compiler Error Message:
CS1595: 'FirebirdSql.Data.Firebird.FbConnection' is defined in multiple places; using definition from 'C:\WINDOWS\assembly\GAC\FirebirdSql.Data.Firebird\1.6.1524.24952__e1b4f92304d7b12f\FirebirdSql.Data.Firebird.dll'
I have this error while trying to declare the variable
FbConnection myConnection;
using C#...
and I did include lib:-
<%@ Page Language="C#" %>
<%@ import Namespace="System.Data" %>
<%@ import Namespace="FirebirdSql.Data.Firebird" %>
and I check my web.config
<assemblies>
<add assembly="FirebirdSql.Data.Firebird, Version=1.6.1524.24952, Culture=neutral, PublicKeyToken=e1b4f92304d7b12f" />
</assemblies>
where the version and PublicKeyToken is same compare in my C:\WINDOWS\assembly.. why ? Thks
regards,
weng
|