Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2017-04-21 18:44:43 +0300
committerAlex Perovich <alperovi@microsoft.com>2017-04-21 23:03:35 +0300
commitb368a66a97aec12e17b4d08a3956d6bef00c873d (patch)
tree7bd14f5039783730e482f55b5b15a709aa926d61 /src/System.Private.CoreLib/shared
parentfe2ad4e17ce2abaa57464f6a6770097947da5212 (diff)
Mark CharEnumerator as [Serializable] (dotnet/coreclr#11124)
Fixes https://github.com/dotnet/corefx/issues/18704 Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
Diffstat (limited to 'src/System.Private.CoreLib/shared')
-rw-r--r--src/System.Private.CoreLib/shared/System/CharEnumerator.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/System.Private.CoreLib/shared/System/CharEnumerator.cs b/src/System.Private.CoreLib/shared/System/CharEnumerator.cs
index ea9915a7c..4dbd5cd58 100644
--- a/src/System.Private.CoreLib/shared/System/CharEnumerator.cs
+++ b/src/System.Private.CoreLib/shared/System/CharEnumerator.cs
@@ -17,6 +17,7 @@ using System.Collections.Generic;
namespace System
{
+ [Serializable]
public sealed class CharEnumerator : IEnumerator, IEnumerator<char>, IDisposable, ICloneable
{
private String _str;