C#

書式
修飾子 戻り値の型 メソッド名 (引数)
{
return 値;
}

使用例

using System;namespace Project1{ class Example {// ...

C#

書式
リスト名.First()
使用例

using System;using System.Collections.Generic;using System.Linq;class Program { static ...

C#

書式
リスト名.Last()
使用例

using System;using System.Collections.Generic;using System.Linq;class Program { static ...

Python

書式
json.dumps(obj, *, skipkeys=False, ensure_ascii=True, check_circular=True, allow_nan=True,
cls=None, inden ...

Python

書式
json.dumps(obj, *, skipkeys=False, ensure_ascii=True,
check_circular=True, allow_nan=True, cls=None,
i ...

Python

書式
json.loads()JSON形式の文字列を辞書に変換する
使用例

import json# jsonデータの定義:cft = '{ "username":"yama", "age":30, "city" ...

C#

書式
delegate void メソッド名(string addr)
使用例

using System; delegate void delegatesample(string addr); class Pro ...

Ubuntu 20.04

1.パッケージをアップデート
# sudo apt update
# sudo apt install software-properties-common

2.Repositoryを登録
# su ...

VB.net

書式
1.正規表現式 :文字列{回数}
2.Public Function IIf (Expression As Boolean, TruePart As Object, FalsePart As Object) As ...

PHP

説明
json_encode(mixed $value, int $flags = 0, int $depth = 512): string|false
与えられた value を JSON 形式にした文字列を返します ...

VB.net

書式
ReadOnly 変数名 As データ型
使用例

Module Module1 'String型定数を定義 Public ReadOnly CITY As String = "tokyo" 'Integer ...

CSS

書式
rgba(赤 , 緑 , 青 , 透明度)
使用例

<style> .cftA {/*透明度 100%*/color: rgba(255, 0, 0, 1); } .cftB {/*透明度50% ...

Vue.js

書式
v-bind:href=”プロパティ名”
使用例

<!DOCTYPE html><html><script src=""></script& ...

Vue.js

書式
Vue.component(コンポーネント名,
{ template : ‘xxx’}
)
使用例

<!DOCTYPE html><html> ...

Vue.js

書式

new Vue({ data: {名前1: 値1, 名前2: 値2, 名前3: 値3 }})使用

使用例

<!DOCTYPE html><html><script src=""> ...

Vue.js

書式
new Vue({
el:’要素セレクタ’,
data: {データ名前:値}
}
使用例

<!DOCTYPE html><html>& ...

AngularJS

書式
<要素 ng-bind=”{式}”>
ngBind属性は、Angularに指定したHTML要素のテキスト内容を与えた式の値に置換するように指示し、式の値が変更された際にテキスト ...

VB.net

書式
Public Function BeginTransaction () As OracleTransaction
データベースでトランザクションを開始します。

使用例

Public Sub Ru ...