Car/Assets/Plugin/YogiGameCore/FlexReader/Excel2007/SharedStringCollection.cs

15 lines
392 B
C#
Raw Normal View History

2024-12-31 07:57:41 +08:00
using System.Collections.Generic;
using System.Collections.ObjectModel;
namespace FlexFramework.Excel
{
/// <summary>
/// A collection of <see cref="string"/> storing shared values
/// </summary>
public sealed class SharedStringCollection : ReadOnlyCollection<string>
{
public SharedStringCollection(IList<string> list) : base(list)
{
}
}
}