如何在Mac OS上的Xamarin Studio中查看F#的源代码?

时间:2016-06-13 12:51:58

标签: f# xamarin-studio

F#代码:

let s = "123"
let b = s.Contains "1"
printfn "Hello World!"

当我选择Contains并点击“转到声明”时,Xamarin显示:

using System;

public bool Contains (string value); //like a abstract method, no method body

当我选择printfn和“转到声明”时,Xamarin显示:

using System;
using System.Collections;
using System.Diagnostics;
using System.Numerics;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Security;
using System.Threading;

[assembly: AssemblyVersion ("4.4.0.0")]
[assembly: AutoOpen ("Microsoft.FSharp")]
[assembly: AutoOpen ("Microsoft.FSharp.Core.LanguagePrimitives.IntrinsicOperators")]
[assembly: AutoOpen ("Microsoft.FSharp.Core")]
[assembly: AutoOpen ("Microsoft.FSharp.Collections")]
[assembly: AutoOpen ("Microsoft.FSharp.Control")]
[assembly: AutoOpen ("Microsoft.FSharp.Linq.QueryRunExtensions.LowPriority")]
[assembly: AutoOpen ("Microsoft.FSharp.Linq.QueryRunExtensions.HighPriority")]
[assembly: FSharpInterfaceDataVersion (2, 0, 0)]
[assembly: CLSCompliant (true)]
[assembly: Debuggable (DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
[assembly: AssemblyCopyright ("© Microsoft Corporation and other contributors.  Apache 2.0 License.")]
[assembly: AssemblyDescription ("FSharp.Core.dll")]
[assembly: AssemblyProduct ("F# (open edition)")]
[assembly: AssemblyTitle ("FSharp.Core.dll")]
[assembly: DefaultDependency (LoadHint.Always)]
[assembly: Dependency ("FSharp.Core", LoadHint.Always)]
[assembly: ComVisible (false)]
[assembly: ComVisible (false)]
[assembly: SecurityTransparent]
[assembly: TypeForwardedTo (typeof(AggregateException))]
[assembly: TypeForwardedTo (typeof(IStructuralComparable))]
[assembly: TypeForwardedTo (typeof(IStructuralEquatable))]
[assembly: TypeForwardedTo (typeof(IObservable))]
[assembly: TypeForwardedTo (typeof(IObserver))]
[assembly: TypeForwardedTo (typeof(Lazy))]
[assembly: TypeForwardedTo (typeof(BigInteger))]
[assembly: TypeForwardedTo (typeof(CancellationToken))]
[assembly: TypeForwardedTo (typeof(CancellationTokenRegistration))]
[assembly: TypeForwardedTo (typeof(CancellationTokenSource))]
[assembly: TypeForwardedTo (typeof(Tuple))]
[assembly: TypeForwardedTo (typeof(Tuple))]
[assembly: TypeForwardedTo (typeof(Tuple))]
[assembly: TypeForwardedTo (typeof(Tuple))]
[assembly: TypeForwardedTo (typeof(Tuple))]
[assembly: TypeForwardedTo (typeof(Tuple))]
[assembly: TypeForwardedTo (typeof(Tuple))]
[assembly: TypeForwardedTo (typeof(Tuple))]
[assembly: TypeForwardedTo (typeof(Tuple))]

有没有办法查看F#的源代码?

0 个答案:

没有答案