Hi all
Iam problem compiling my .cs file, iam using vs.net 2005, orginally
the app is in .net 1.1, iam adding references to google dlls,
iam trying to add a mehtod to existing class file, which using google
api
i have included
using Google.GData.Client;
using Google.GData.Extensions;
using Google.GData.GoogleBase;
using Google.GData.CodeSearch;
using Google.GData.Calendar;
using Google.GData;
class test
{
public void addItemToGoogleBase()
{
//code goes here ..
}
//other existing methods and properties
}
when i complie this one i get the error
Test.cs(14,7): error CS0246: The type or namespace name 'Google' could
not be found (are you missing a using directive or an assembly
reference?)
i have added reference to google dlls, where could be the issue?
is it to do with .net 1.1 and .net 2.0 issue?
Thanks in advance
Holy Coding