Skip to content

Commit

Permalink
SignatureFix
Browse files Browse the repository at this point in the history
svn path=/trunk/mcs/; revision=20621
  • Loading branch information
migueldeicaza committed Nov 30, 2003
1 parent cb81cf0 commit 1eb1a01
Showing 1 changed file with 10 additions and 0 deletions.
Expand Up @@ -42,10 +42,20 @@ namespace System.DirectoryServices
/// </summary>
public class SchemaNameCollection : IList, ICollection, IEnumerable
{
private SchemaNameCollection ()
{
}

int IList.Add(object avalue)
{
throw new NotImplementedException();
}

int Add (string value)
{
throw new NotImplementedException();
}

void IList.Clear()
{
throw new NotImplementedException();
Expand Down

0 comments on commit 1eb1a01

Please sign in to comment.