I would like to check featuretable is exist in geodatabase.
How can I check it?
If you know the table name or display name of the table, you can check if table exists in a geodatabase.
```
var gdb = await Geodatabase.OpenAsync(localFilePath);
var tb=gdb.GeodatabaseFeatureTables.Select(a => a.DisplayName == "Lines_Sync2");
if (tb != null)
MessageBox.Show("Table exists");
```
Thank you so much.
I could checked to exist featuretable.