상속: IReplEditor2
예제 #1
0
 public ReplEditorReplaceListener(ReplEditor replEditor)
 {
     if (replEditor == null)
     {
         throw new ArgumentNullException(nameof(replEditor));
     }
     this.replEditor = replEditor;
 }
예제 #2
0
 public GuidObjectsProvider(ReplEditor replEditorUI)
 {
     this.replEditorUI = replEditorUI;
 }
예제 #3
0
 public CachedTextColorsCollectionBuilder(ReplEditor owner, int totalLength)
 {
     this.owner = owner;
     this.cachedTextColorsCollection = new CachedTextColorsCollection();
     this.totalLength = totalLength;
 }
예제 #4
0
		public CachedTextColorsCollectionBuilder(ReplEditor owner, int totalLength) {
			this.owner = owner;
			cachedTextColorsCollection = new CachedTextColorsCollection();
			this.totalLength = totalLength;
		}
예제 #5
0
			public GuidObjectsProvider(ReplEditor replEditorUI) {
				this.replEditorUI = replEditorUI;
			}
예제 #6
0
 public ReplEditorReplaceListener(ReplEditor replEditor) => this.replEditor = replEditor ?? throw new ArgumentNullException(nameof(replEditor));
		public ReplEditorReplaceListener(ReplEditor replEditor) {
			if (replEditor == null)
				throw new ArgumentNullException(nameof(replEditor));
			this.replEditor = replEditor;
		}