JohnH is correct that you should provide some more specific information but I'll provide some general information that may help. Base-64 is a way to represent binary data as text. You can convert between a Byte array and a base-64 String and back using the ToBase64String and FromBase64String methods of the Convert class.
You say that you want to convert base-64 to a file, which doesn't really make sense. If you have base-64 data then you have text. Do you want to write that text to a file, or do you want to convert that text to binary data and write that to a file? It's pretty simple stuff either way. Either call File.WriteAllText or else call Convert.FromBase64String and File.WriteAllBytes.