summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/Text/EncoderNLS.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mscorlib/src/System/Text/EncoderNLS.cs')
-rw-r--r--src/mscorlib/src/System/Text/EncoderNLS.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mscorlib/src/System/Text/EncoderNLS.cs b/src/mscorlib/src/System/Text/EncoderNLS.cs
index 35f83893f4..6eefaacd70 100644
--- a/src/mscorlib/src/System/Text/EncoderNLS.cs
+++ b/src/mscorlib/src/System/Text/EncoderNLS.cs
@@ -24,7 +24,10 @@ namespace System.Text
#if FEATURE_SERIALIZATION
[Serializable]
#endif
- internal class EncoderNLS : Encoder, ISerializable
+ internal class EncoderNLS : Encoder
+#if FEATURE_SERIALIZATION
+ , ISerializable
+#endif
{
// Need a place for the last left over character, most of our encodings use this
internal char charLeftOver;