.NET Framework 4.7.2 でのメソッド名に頻出する動詞部分。 メソッド名の命名規則(動詞+単語)から切り出しているので、動詞ではないものも多々含まれる。
| 動詞 | 出現回数 |
|---|---|
| Get | 25707 |
| On | 7474 |
| Set | 5977 |
| Create | 5940 |
| Write | 4841 |
| #define _CRT_SECURE_NO_WARNINGS 1 | |
| #include <stdio.h> | |
| #include <fstream> | |
| #include <iostream> | |
| #include "gtest/gtest.h" | |
| #pragma comment(lib, "gtestd.lib") | |
| namespace { | |
| using namespace ::testing; |
| Windows Registry Editor Version 5.00 | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\FontLink\SystemLink] | |
| "Fira Code"=hex(7):4d,00,45,00,49,00,52,00,59,00,4f,00,2e,00,54,00,54,00,43,00,\ | |
| 2c,00,4d,00,65,00,69,00,72,00,79,00,6f,00,2c,00,31,00,32,00,38,00,2c,00,38,\ | |
| 00,35,00,00,00,4d,00,45,00,49,00,52,00,59,00,4f,00,2e,00,54,00,54,00,43,00,\ | |
| 2c,00,4d,00,65,00,69,00,72,00,79,00,6f,00,00,00,00,00 |
.NET Framework 4.7.2 でのメソッド名に頻出する動詞部分。 メソッド名の命名規則(動詞+単語)から切り出しているので、動詞ではないものも多々含まれる。
| 動詞 | 出現回数 |
|---|---|
| Get | 25707 |
| On | 7474 |
| Set | 5977 |
| Create | 5940 |
| Write | 4841 |
| #pragma once | |
| #include <windows.h> | |
| #include <assert.h> | |
| #ifdef _WIN32_WCE | |
| #define _beginthreadex(security, \ | |
| stack_size, \ | |
| start_proc, \ | |
| arg, \ | |
| flags, \ | |
| pid) \ |
| 2018年 | 額面 | 手取り |
|---|---|---|
| total | ||
| 賞与2 | 556k | 456k |
| 2018/12 | ||
| 2018/11 | 363k | 269k |
| 2018/10 | 379k | 284k |
| 2018/9 | 336k | 244k |
| 2018/8 | 352k | 259k |
| 賞与1 | 530k | 434k |
下記から。
https://blogs.msdn.microsoft.com/oldnewthing/20041025-00/?p=37483
EXTERN_C IMAGE_DOS_HEADER __ImageBase;
#define HINST_THISCOMPONENT ((HINSTANCE)&__ImageBase)調べた範囲を記述する。まだ動作確認はしていない。
大体 http://blog.cybozu.io/entry/5132 を見ればいいと思う。
現在、codeplexではアーカイブに移行してしまっているが、ダウンロードはできる。
download archive から、 gitscc.zipをダウンロードする。releases/1/3b4d43e5-4a5a-47c6-b886-c1bbf0510154 を、 GitSccProvider.msi にリネームして、インストールする。| #include "stdafx.h" | |
| #define NOMINMAX | |
| #define WIN32_LEAN_AND_MEAN | |
| #define STRICT | |
| #include <windows.h> | |
| #include <thread> | |
| int main() | |
| { |
| template< unsigned long long N > | |
| struct popcount | |
| { | |
| static const unsigned long long value = popcount< N / 2 >::value + (N % 2); | |
| }; | |
| template<> | |
| struct popcount< 0 > | |
| { | |
| static const unsigned long long value = 0; |
| Option Explicit | |
| Public Function TEXTJOIN(区切り記号 As String, 空の文字列を無視 As Boolean, ParamArray 文字列()) As String | |
| Dim ret As String | |
| Dim first As Boolean | |
| first = True | |
| Dim i As Long | |
| Dim 文字列配列() As Variant | |
| If (TypeName(文字列(LBound(文字列))) = "Range") Then |