Skip to content

Instantly share code, notes, and snippets.

@todorok1
Created April 29, 2020 07:15
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/a62890669a2c4cb8b733812cc405b515 to your computer and use it in GitHub Desktop.
Save todorok1/a62890669a2c4cb8b733812cc405b515 to your computer and use it in GitHub Desktop.
typeparamタグの例
/// <Summary>
/// typeparamタグを使うとメソッドの型パラメータの説明を表示してくれます。
/// </Summary>
/// <typeparam name="T">型パラメータの説明がここに表示されます。</typeparam>
T[] TypeparamMethod<T>()
{
// 指定された型で大きさが5の配列を返します。
return new T[5];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment