Просмотр исходного кода

* XPathEditor.cs: .net 1.2 only

svn path=/trunk/mcs/; revision=20149
Jackson Harper 22 лет назад
Родитель
Сommit
85c05ef1d8

+ 4 - 0
mcs/class/System.XML/System.Xml/ChangeLog

@@ -1,3 +1,7 @@
+2003-11-17  Jackson Harper  <[email protected]>
+
+	* XPathEditor.cs: .net 1.2 only
+	
 2003-11-17  Atsushi Enomoto  <[email protected]>
 
 	* AsyncXmlTextWriter.cs, IXPathChangeNavigator.cs, IXPathEditor.cs,

+ 5 - 0
mcs/class/System.XML/System.Xml/XPathEditor.cs

@@ -6,6 +6,9 @@
 //
 // (C)2003 Atsushi Enomoto
 //
+
+#if NET_1_2
+
 using System;
 using System.Collections;
 using System.Collections.Specialized;
@@ -69,3 +72,5 @@ namespace System.Xml
 		public abstract void SetValue (string text);
 	}
 }
+
+#endif