次のコードでDRY原則を実装する方法は? 複数の "using" キーワードを 1 つのキーワードで削除できますか
public void CreateFile()
{
using (FileStream f1 = new FileStream(@"C:\\Test",FileMode.Create))
{
}
}
public void FontClass()
{
using (Font f1 = new Font("Arial", 10.0f))
{
}
}