Updated with review feedback.
[mono.git] / mcs / errors / cs0535-5.cs
1 // CS0535: `ServerProperty' does not implement interface member `IServerProperty.SetValue(string, uint)'
2 // Line: 10
3
4 public interface IServerProperty
5 {
6         int[] GetChildren (uint timeout);
7         void SetValue (string value, uint timeout);
8 }
9
10 public class ServerProperty : IServerProperty
11 {
12         public int[] GetChildren (uint timeout)
13         {
14                 return null;
15         }
16 }