This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Learn more about F# at http://fsharp.net | |
// See the 'F# Tutorial' project for more help. | |
open System.Diagnostics | |
[<EntryPoint>] | |
let main argv = | |
let sequ = seq [ 1 .. 10000000 ] | |
let cach = ResizeArray<_>(sequ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#region | |
using System; | |
using System.Collections.Generic; | |
using System.Threading.Tasks; | |
using Cmc.Core.ComponentModel; | |
using Cmc.Core.Diagnostics; | |
using Cmc.Installer.Core.Tasks; | |
#endregion |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace TipCalc | |
open FSharp.ViewModule | |
open System | |
type TipCalcModel() as self = | |
inherit ViewModelBase() | |
// Create our backing fields | |
let subTotal = self.Factory.Backing(<@ self.SubTotal @>, 0.0) |
NewerOlder