RuntimeHelpers.EnumerateUsing<'T,'Collection,'U> 函数 (F#)

F# 编译器将发出对此函数的调用,以实现 F# 序列表达式的 use 关键字。

命名空间/模块路径: Microsoft.FSharp.Core.CompilerServices.RuntimeHelpers

程序集:FSharp.Core(在 FSharp.Core.dll 中)

// Signature:
RuntimeHelpers.EnumerateUsing : 'T -> ('T -> 'Collection) -> seq<'U> (requires 'T :> IDisposable and 'Collection :> seq<'U>)

// Usage:
RuntimeHelpers.EnumerateUsing resource source

参数

  • resource
    类型:'T

    要使用和释放的资源。

  • source
    类型:'T -> 'Collection

    输入序列。

返回值

结果序列。

平台

Windows 7、Windows Vista SP2、Windows XP SP3、Windows XP x64 SP2、Windows Server 2008 R2、Windows Server 2008 SP2、Windows Server 2003 SP2

版本信息

F# 运行时

受以下版本支持:2.0、4.0

Silverlight

受以下版本支持:3

请参见

参考

CompilerServices.RuntimeHelpers 模块 (F#)

Microsoft.FSharp.Core.CompilerServices 命名空间 (F#)

IDisposable