Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@todorok1
Created November 2, 2020 04:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save todorok1/27bc3e93aa3ee8c9d5f50d1168f1c4e5 to your computer and use it in GitHub Desktop.
Save todorok1/27bc3e93aa3ee8c9d5f50d1168f1c4e5 to your computer and use it in GitHub Desktop.
型パラメータをイメージするための引数の例
/// <Summary>
/// 引数の整数を足し合わせるメソッドです。
/// </Summary>
int AddInt(int a, int b)
{
int result = a + b;
return result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment