Files
NetUnicodeInfo/UnicodeInformation/UnicodeBlock.cs
T
GoldenCrystal 6b4e1da5bf Masked some unsupported IList<T> and ICollection<T> members.
Added more XML documentation tags.
2014-12-16 00:53:15 +01:00

24 lines
578 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace System.Unicode
{
/// <summary>Represents a Unicode block.</summary>
public struct UnicodeBlock
{
/// <summary>The code point range of this block.</summary>
public readonly UnicodeCodePointRange CodePointRange;
/// <summary>The name of this block.</summary>
public readonly string Name;
internal UnicodeBlock(UnicodeCodePointRange codePointRange, string name)
{
this.CodePointRange = codePointRange;
this.Name = name;
}
}
}