How to estimate memory of FString

I want to check the memory of each components.
But I can’t estimate how many FString uses memory.
How can I handle it?

You can check the size of your FString variable with GetAllocatedSize() which returns a SIZE_T (An unsigned integer the same size as a pointer)

Thanks for reply.

I’ll find a proper way to find all fstring memory usage by using GetAllocatedSize.