English 中文(简体)
是否有可能使用伙伴关系。 NET 核心在F# fsx字体内?
原标题:Is it possible to use ASP.NET Core within an F# fsx script?
问题回答

是否有可能使用伙伴关系。 NET 核心在F# fsx字体内?

没有人能够这样做,就直接提到伙伴关系。 NET 在F# fsx书写体内的核心是官方支持的,但你可以手工地把这项工作做成工作。

您将需要装上<代码>dll文档,然后需要开放。

让我说,你想从我的名录中提一下一下一下子:

“entergraph

Use #r "path/to/assembly.dll" to reference assemblies manually.

然后,你必须找到必要的伙伴关系。 NET 页: 1 NET 核心安装

内容: 如果我想从上述名录中提及<代码>Microsoft.AspNetCore.dll,那么你可以做如下工作:

#r "path/to/Microsoft.AspNetCore.App.8.0.0/Microsoft.AspNetCore.dll"

open Microsoft.AspNetCore

<>说明: 我高度建议您:





相关问题
F#: Storing and mapping a list of functions

I have a number of events that happen in a game. I want to control the time and order at which these events occur. For example: Event 1: Show some text on screen for N frames & play a sound ...

Creating Silverlight 3 applications with F#

Is there an easy way to create Silverlight 3 applications with F# (October CTP)? I have seen the F# for Silverlight, but that only works with the May CTP. I am using Visual Studio Integrated Shell ...

How To Change List of Chars To String?

In F# I want to transform a list of chars into a string. Consider the following code: let lChars = [ a ; b ; c ] If I simply do lChars.ToString, I get "[ a ; b ; c ]". I m trying to get "abc". I ...

Unzipping ZLIB compressed portions of a binary file

I m reading a file(a flash swf) from .Net 3.5 that has a header which states whether the body of the file/Stream is compressed or not. However, I m having problems-after I rewrap the basic File ...

Pretty print a tree

Let s say I have a binary tree data structure defined as follows type a tree = | Node of a tree * a * a tree | Nil I have an instance of a tree as follows: let x = Node (Node (...

F# String Pattern-Matching with Wildcards

As part of a project I have assigned myself as a way of improving my knowledge of F# and functional programming in general, I am attempting to write a string pattern-matching algorithm from scratch ...

热门标签