Texture2D from Base64

Is there a way to load texture using base64 format?

It is easy actually, but info about it was hard to find. Maybe it will help someone :slight_smile:

byte[] bytes = Convert.FromBase64String("...");
test = Texture2D.FromStream(GraphicsDevice, new MemoryStream(bytes));