.NET
api.txt
Associated article: Measuring API Usability
Tags: .NET
Published source code accompanying the article by Steve Goyette in which he presents a spam filter built from .NET 2003 COM add-ins.
Measuring API Usability
by Steven Clarke
Example 1:
class FileIO
{
public FileIO(string path){...}
protected ~FileIO(){...}
public void Close() {...}
public void WriteLine(string text) {...}
public string ReadLine(){...}
public void DeleteFile(){...}
public FileIO CopyFile(string newPath) {...}
}
Example 2:
IPAddress hostIPAddress = IPAddress.Parse("130.23.43.234&...


