System.Int32.MaxValue
と書きたくないのです。GenericMaxValue<int>
と書きたいのです。
> let inline GenericMaxValue< ^T when ^T : (static member MaxValue : ^T) > : ^T =
- (^T : (static member MaxValue : ^T) ())
- ;;
> type Foo(n : int) =
- member x.Value = n
Strawberry Perl をインストール。インストール先はデフォルトとする。
毎度おなじみインストール確認。
perl -v
@echo off | |
set sln=SampleApp | |
set proj=SampleApp | |
set conf=Release | |
set plat=x86 | |
set publisher=Dummy Inc. | |
set product=Sample Application | |
set version=0.1.2.3 |
param( | |
[ValidateSet("CUI", "GUI")] | |
[string]$RunningStyle, | |
[string]$Text | |
) | |
### bootstrap | |
if (-not $RunningStyle) { | |
if ((Get-Host).Name -eq "ConsoleHost") { | |
Write-Host "Loading..." |
Option Explicit | |
Sub TestRun() | |
Dim wf As WorksheetFunction: Set wf = WorksheetFunction | |
Dim rng As Range, r As Range, arr As Variant | |
For Each rng In BorderedCells(Sheet1.UsedRange) | |
Debug.Print "[" & rng.Address(False, False) & "] "; | |
For Each r In rng.Rows | |
If r.Cells.Count > 1 Then |