Add project files.

This commit is contained in:
Dmitry Kolchev
2019-08-29 23:24:07 +03:00
parent cf73662a92
commit b0dc0da558
80 changed files with 37714 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System.Collections;
using System.Collections.Specialized;
#if !FEATURE_SERIALIZATION
namespace System.CodeDom
#else
namespace Compat.Runtime.Serialization
#endif
{
#if !FEATURE_SERIALIZATION
public class CodeObject
#else
internal class CodeObject
#endif
{
private IDictionary _userData = null;
public CodeObject() { }
public IDictionary UserData => _userData ?? (_userData = new ListDictionary());
}
}