AvalonStudio.TextEditor.Document.RopeTextSource.RopeTextSource C# (CSharp) 메소드

RopeTextSource() 공개 메소드

Creates a new RopeTextSource.
public RopeTextSource ( Rope rope ) : System
rope Rope
리턴 System
		public RopeTextSource(Rope<char> rope)
		{
			if (rope == null)
				throw new ArgumentNullException("rope");
			this.rope = rope.Clone();
		}

Same methods

RopeTextSource::RopeTextSource ( Rope rope, ITextSourceVersion version ) : System