Skybound.Gecko.GeckoComment.ReplaceData C# (CSharp) 메소드

ReplaceData() 공개 메소드

public ReplaceData ( uint offset, uint count, string arg ) : void
offset uint
count uint
arg string
리턴 void
        public void ReplaceData(uint offset, uint count, string arg)
        {
            using (nsAString str = new nsAString(arg))
            {
                DomComment.ReplaceData(offset, count, str);
            }
        }