Jos*_*off 16 ironpython idisposable
IronPython中的相同之处是什么?它只是一个尝试 - 最后块?
using (var something = new ClassThatImplementsIDisposable())
{
// stuff happens here
}
Run Code Online (Sandbox Code Playgroud)
Boj*_*nik 27
IronPython支持使用IDisposablewith with语句,因此您可以编写如下内容:
with ClassThatImplementsIDisposable() as something:
pass
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
5121 次 |
| 最近记录: |