K
Size: a a a
OM
AT
var enc1251 = Encoding.GetEncoding(1251);
-> System.NotSupportedException: 'No data is available for encoding 1251. For information on defining a custom encoding, see the documentation for the Encoding.RegisterProvider method.'
OM
G
AT
var enc1251 = Encoding.GetEncoding(1251);
-> System.NotSupportedException: 'No data is available for encoding 1251. For information on defining a custom encoding, see the documentation for the Encoding.RegisterProvider method.'
Encoding.RegisterProvider(CodePagesEncodingProvider.Instance);
AT
Encoding.RegisterProvider(CodePagesEncodingProvider.Instance);
OM
R
R
K