UTF8 is the real default and it is only used when automatic detection do not found any encoding. So the BOM is more important. See details below:
ReadAllText(string path) - MSDN: "This method attempts to automatically detect the encoding"
ReadAllText(string path, Encoding encoding) - MSDN: "This method attempts to automatically detect the encoding"
From Reflector tool: ReadAllText(path) is the same as ReadAllText(path, Encoding.UTF8), because ReadAllText(path) just calls ReadAllText(path, Encoding.UTF8). Both methods creates StreamReader in this way:
public StreamReader(string path, Encoding encoding) : this(path, encoding, true, 0x400)
{
}
This means that it creates StreamReader(string path, Encoding encoding, bool detectEncodingFromByteOrderMarks, int bufferSize) with detectEncodingFromByteOrderMarks set to true. This means that if the Byte Order Mark (BOM) is present it will use encoding from BOM, if BOM is not present then it will use provided encoding. If BOM is not present and encoding is not provided then it will use UTF8. So the UTF8 is the real default in this case, but remember that BOM is more important than suggested encoding.
// bom.txt is the file with BOM present. nobom.txt - witout BOM
File.ReadAllText("bom.txt"); // use BOM
File.ReadAllText("bom.txt", Encoding.UTF8); // use BOM
File.ReadAllText("bom.txt", Encoding.Default); // use BOM
File.ReadAllText("nobom.txt"); // use UTF-8
File.ReadAllText("nobom.txt", Encoding.UTF8); // use UTF-8
File.ReadAllText("nobom.txt", Encoding.Default); // use system's ANSI codepage