unity tilemap get all tiles

Code Example - unity tilemap get all tiles

                
                        foreach (var position in tilemap.cellBounds.allPositionsWithin) {
            if (!tilemap.HasTile(position)) {
                continue;
            }
 
            // Tile is not empty; do stuff
        }