Geodatabase gdb = Geodatabase.Open("C:\\data10.gdb");
string [] fcs = gdb.GetChildDatasets("\\", "Feature Class");
foreach (string fc in fcs)
{
Console.WriteLine(fc);
Table t = gdb.OpenTable(fc);
}
gdb.Close();In your case, the data is using a custom projection. Custom projections are not supported by the File Geodatabase API. We are considering support for custom projections in a later release of the API.