2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0535-5.cs
blob98048101e7349aa4ce2e0f1cce3c2786d53c76b9
1 // CS0535: `ServerProperty' does not implement interface member `IServerProperty.SetValue(string, uint)'
2 // Line: 10
4 public interface IServerProperty
6 int[] GetChildren (uint timeout);
7 void SetValue (string value, uint timeout);
10 public class ServerProperty : IServerProperty
12 public int[] GetChildren (uint timeout)
14 return null;