Well, that example code makes no sense, but why not simply use a common interface? For example, all (I think all at least) of the text writing types in the System.IO namespace inherit from the abstract class TextWriter, so...
For example:
public class Logger
{
public Logger(TextWriter writer)
{
_writer = writer;
}
private TextWriter _writer;
public void Write(string text)
{
_writer.Write(text);
}
}
Now, is it a good idea to make the writer public and rely on users of your code to make sure it is always valid? Probably not, but that's more a design consideration. Also, your java style setter is A) atypical for C# which has nice syntactical support for properties, and B) useless as the backing field is public anyway.
Type? Maybe something likeTextWriter? – svick Jul 17 '12 at 0:47