I got another problem.
Here is the actual class :
using Google.GData.Client; using Google.GData.Extensions; using System; using System.Xml; namespace Google.GData.Spreadsheets { public class CellEntry : AbstractEntry { public static AtomCategory CELL_CATEGORY; public CellEntry(); public CellEntry(string inputValue); [CLSCompliant(false)] public CellEntry(uint row, uint column); [CLSCompliant(false)] public CellEntry(uint row, uint column, string inputValue); public CellEntry.CellElement Cell { get; set; } [CLSCompliant(false)] public class CellElement : SimpleElement { public CellElement(); [CLSCompliant(false)] public uint Column { get; set; } public string InputValue { get; set; } public string NumericValue { get; set; } [CLSCompliant(false)] public uint Row { get; set; } } } }
Actually CellElement is under the CellEntry class (you can see the above code)
Can you tell me , how can I Initiate CellElement class ?
Thanks,
Raghu
The type probably doesn't have a parameterless constructor. You likely need to pass a parameter to the constructur when you call CreateInstance.
Check the constructor syntax in Reflector to see what constructor parameters are supported/required.
+++ Rick ---
Hi,
When I try to access google docs GData API, It is saying,
Constructor on type 'Google.GData.Spreadsheets.SpreadsheetsService' not found.
Can you tell me what is the wrong here ?