first paragraph.
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
| <UserSettings> | |
| <ApplicationIdentity version="11.0"/> | |
| <ToolsOptions> | |
| <ToolsOptionsCategory name="Environment" RegisteredName="Environment"> | |
| <ToolsOptionsSubCategory name="WebBrowser" RegisteredName="WebBrowser" PackageName="Visual Studio Web Browser Package"> | |
| <PropertyValue name="HomePage">http://go.microsoft.com/fwlink/?LinkId=32722&clcid=%vsspv_lcid_hex%</PropertyValue> | |
| <PropertyValue name="ViewSourceIn">1</PropertyValue> | |
| <PropertyValue name="ViewSourceExternalProgram">%systemroot%\system32\notepad.exe</PropertyValue> | |
| <PropertyValue name="SearchPage">http://go.microsoft.com/fwlink/?LinkId=32722&clcid=%vsspv_lcid_hex%</PropertyValue> | |
| </ToolsOptionsSubCategory> |
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
| <?xml version="1.0" encoding="shift_jis" ?> | |
| <job id="main"> | |
| <script src="greeter.js" language="JScript"></script> | |
| <script src="main.js" language="JScript"></script> | |
| </job> |
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
| /// <reference path="greeter.ts"/> | |
| var greeter = new TAKANO.Sho.Greeter("Sho"); | |
| greeter.greet(); |
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
| var TAKANO; | |
| (function (TAKANO) { | |
| (function (Sho) { | |
| var Greeter = (function () { | |
| function Greeter(name) { | |
| this.name = name; | |
| } | |
| Greeter.prototype.greet = function () { | |
| WScript.Echo("Hello " + this.name + "!"); | |
| }; |
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
| module TAKANO.Sho { | |
| export class Greeter { | |
| constructor (public name: string) {} | |
| greet() { | |
| WScript.Echo("Hello " + this.name + "!"); | |
| } | |
| } | |
| } |
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
| 項目名 private変数名 メソッド名 | |
| 商品コード shohinCd ShohinCd | |
| /** \1 */\nprivate String \2; | |
| ↓ | |
| /** 商品コード */ | |
| private String shohinCd; | |
| /**\n *\n * \1を設定します。\n * @param \1\n */\npublic void set\3(String \2) {\n this.\2 = \2;\n}\n\n/**\n * \1を取得します。\n *\n * @return \1\n */\npublic String get\3() {\n return \2;\n}\n | |
| ↓ |
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.ServiceModel; | |
| using System.ServiceModel.Activation; | |
| namespace TAKANO_Sho.Wcf.Extensions | |
| { | |
| /// <summary> | |
| /// 共通設定を行うWCFサービスホストを作成します。 | |
| /// </summary> | |
| /// <typeparam name="TService">サービス型。</typeparam> | |
| /// <typeparam name="TServiceContract">サービスコントラクト型。</typeparam> |
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.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| using Microsoft.VisualStudio.TestTools.UnitTesting; | |
| namespace Stack | |
| { |
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
| // Refer to | |
| // matarillo.com: モナドの驚異 | |
| // http://matarillo.com/general/monads.php | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; |