Hi,
I would like to get the spatial reference of the feature class using file Geodtabase API.I am using FGDB API 1.4 and C# VS 2010. I have tried to use FieldDef to get Spatial Reference but receiving null error. Please guide me. Also attaching the error message.

string fcName = gdbFCList[2].Remove(0, 1);
Table fcTable = _geodatabase.OpenTable(fcName);
FieldInfo fieldInfo = fcTable.FieldInformation as FieldInfo;
FieldDef[] fieldDefs=fcTable.FieldDefs;
also tried following code
string spr = fcTable.FieldDefs[2].geometryDef.spatialReference.ToString();