3.5 MyLinkedList 实现
Posted tedxiong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了3.5 MyLinkedList 实现相关的知识,希望对你有一定的参考价值。
// This try-finally statement only calls Dispose in the finally block.
Font font1 = new Font("Arial", 10.0f);
try
{
byte charset = font1.GdiCharSet;
}
finally
{
if (font1 != null)
{
((IDisposable)font1).Dispose();
}
}
// You can do the same thing with a using statement.
using (Font font2 = new Font("Arial", 10.0f))
{
byte charset = font2.GdiCharSet;
}
以上是关于3.5 MyLinkedList 实现的主要内容,如果未能解决你的问题,请参考以下文章