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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
namespace OppaiAnalysis | |
{ | |
static class OppaiAnalysis | |
{ | |
static public double cupDiameterFromUnderbustAndCup(double under, string cup) |
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
using System; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.IO; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace ConsoleApplication2 | |
{ |
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
using LINQtoCSV; | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace LINQtoCSVTest | |
{ | |
class ExifMini |
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
using LINQtoCSV; | |
using System; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.IO; | |
using System.Linq; | |
using System.Text; | |
using System.Text.RegularExpressions; | |
using System.Threading.Tasks; |
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
/* F#の実行 | |
実行結果は「アウトプット枠」へ書き出します。 | |
【特徴】 | |
思いついたコードをすぐ試せることを優先しています。 | |
ファイルに保存していないF#を実行できます。 | |
【動作環境】 | |
秀丸エディタ ver8.21 で動作を確認。(ver8 以降なら動くはず。) |
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
set src="F:\Pictures" | |
set dest="Z:\Pictures" | |
robocopy %src% %dest% /MIR /R:0 /NP /FFT | |
set src="F:\Music" | |
set dest="Z:\Music" | |
robocopy %src% %dest% /MIR /R:0 /NP /FFT | |
shutdown.exe |
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
set src="F:\Pictures" | |
set dest="Z:\Pictures" | |
set logFile="log.txt" | |
robocopy %src% %dest% /MIR /R:0 /NP /FFT /LOG:%logFile% | |
set src="F:\Music" | |
set dest="Z:\Music" | |
set logFile="log2.txt" | |
robocopy %src% %dest% /MIR /R:0 /NP /FFT /LOG:%logFile% |
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
class Class1 | |
{ | |
private Task<string> _propertyALoadTask; | |
private string _PropertyA; | |
public string PropertyA{ | |
get | |
{ | |
if(_PropertyA != null) return _PropertyA; |
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
[TestFixture] | |
public class Test1 | |
{ | |
[Test] | |
public void TestMethod即座に読み出し() | |
{ | |
var prefetch = new Class1(); | |
prefetch.PropertyA.Is("abc"); | |
} | |
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
public class Class1 | |
{ | |
private Task _LoadPropertyATask; | |
private string _PropertyA; | |
public string PropertyA | |
{ | |
get | |
{ | |
if (_LoadPropertyATask == null) Initialize(); //同期読み出しの場合、非同期読み出し命令をここで実行 |