ArcGISCompare.GeoDbProcs.getFieldPosition C# (CSharp) 메소드

getFieldPosition() 정적인 개인적인 메소드

static private getFieldPosition ( IWorkspace theWS, String theFC, string theAtt ) : int
theWS IWorkspace
theFC String
theAtt string
리턴 int
    internal static int getFieldPosition(IWorkspace theWS, String theFC, string theAtt)
    {
      int retValue = -1;

      IFeatureClass theClass = GetFeatureClass(theWS, theFC);
      retValue = theClass.Fields.FindField(theAtt);

      return retValue;
    }