find width and height of world space in 2D

I want to know Camera Bounds size in World Space.
Please Help

something like this?

The height of the camera is twice its orthographicSize, and the width can be derived from the height and aspect ratio

float height = camera.orthographicSize * 2;
float width = height * camera.aspect;