Completion Items don't work with Inner Classes

SyntaxEditor .NET Languages Add-on for WPF Forum

Posted 9 years ago by Scott Currie
Version: 14.2.0610
Platform: .NET 4.0
Environment: Windows 8 (64-bit)
Avatar

There are many examples of this, but this is the simplest snippet that illustrates completion lists not working with inner classes:

using System;
using System.Collections.Generic;
using System.Linq;

namespace DotNetLanguagesAddon {
	public class OuterClass {
		public class InnerClass { public int InnerValue { get; set; } }
		
		public InnerClass InnerClass { get; set; }
	}
	
	public class CSharpLanguage {
		public void DemoTest() {
			var outer = new OuterClass();
			outer.InnerClass./* No Completion Items! */
		}
	}	
}

Comments (1)

Posted 9 years ago by Actipro Software Support - Cleveland, OH, USA
Avatar

Hi Scott,

Thanks for letting us know.  We've made some improvements for the upcoming maintenance release that should help with this.


Actipro Software Support

The latest build of this product (v24.1.1) was released 2 months ago, which was after the last post in this thread.

Add Comment

Please log in to a validated account to post comments.