diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/VBNet/VBNetExpressionFinder.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/VBNet/VBNetExpressionFinder.cs
new file mode 100644
index 0000000000..76a46ef514
--- /dev/null
+++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/VBNet/VBNetExpressionFinder.cs
@@ -0,0 +1,45 @@
+//
+//
+//
+//
+// $Revision$
+//
+
+using System;
+
+namespace ICSharpCode.SharpDevelop.Dom.VBNet
+{
+ ///
+ /// Description of VBNetExpressionFinder.
+ ///
+ public class VBNetExpressionFinder : IExpressionFinder
+ {
+ ParseInformation parseInformation;
+ IProjectContent projectContent;
+
+ public VBNetExpressionFinder(ParseInformation parseInformation)
+ {
+ this.parseInformation = parseInformation;
+ if (parseInformation != null && parseInformation.CompilationUnit != null) {
+ projectContent = parseInformation.CompilationUnit.ProjectContent;
+ } else {
+ projectContent = DefaultProjectContent.DummyProjectContent;
+ }
+ }
+
+ public ExpressionResult FindExpression(string text, int offset)
+ {
+ throw new NotImplementedException();
+ }
+
+ public ExpressionResult FindFullExpression(string text, int offset)
+ {
+ throw new NotImplementedException();
+ }
+
+ public string RemoveLastPart(string expression)
+ {
+ throw new NotImplementedException();
+ }
+ }
+}