Merge pull request #1709 from atsushieno/import-codedom-core
[mono.git] / mcs / class / System / System.CodeDom / CodeDefaultValueExpression.cs
index 1dbdda9a3c242b90782b6596f1ff29a1f3c2da46..750f42f5f5373a1601983389f47deb295d9f83c6 100644 (file)
@@ -26,8 +26,6 @@
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-#if NET_2_0
-
 using System.Runtime.InteropServices;
 
 namespace System.CodeDom {
@@ -59,7 +57,13 @@ namespace System.CodeDom {
                        }
                        set { type = value; }
                }
+
+               //
+               // ICodeDomVisitor method
+               //
+               internal override void Accept (ICodeDomVisitor visitor)
+               {
+                       visitor.Visit (this);
+               }
        }
 }
-
-#endif