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

DeleteFeature() 공개 정적인 메소드

public static DeleteFeature ( IFeatureClass theFC, int OID ) : void
theFC IFeatureClass
OID int
리턴 void
    public static void DeleteFeature(IFeatureClass theFC, int OID)
    {
      try
      {
        IFeature theNF = theFC.GetFeature(OID);

        if (theNF != null) { theNF.Delete(); }
      }
      catch (Exception ex) { }
    }