Ejemplo n.º 1
0
            public override IEnumerator <CodePoint> GetEnumerator()
            {
                for (var i = 0; i < content.Length;)
                {
                    var point = new CodePoint(content, i);
                    yield return(point);

                    i += point.AsUtf16.CodeUnitsRequired;
                }
            }
Ejemplo n.º 2
0
 public Utf8(CodePoint codepoint)
 {
     this.codepoint = codepoint;
 }