AvalonStudio.TextEditor.Document.StringTextSource.StringTextSource C# (CSharp) Method

StringTextSource() public method

Creates a new StringTextSource with the given text.
public StringTextSource ( string text ) : System
text string
return System
		public StringTextSource(string text)
		{
			if (text == null)
				throw new ArgumentNullException("text");
			Text = text;
		}

Same methods

StringTextSource::StringTextSource ( string text, ITextSourceVersion version ) : System