Skip to content

Instantly share code, notes, and snippets.

@todorok1
Created January 22, 2021 05:42
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/1d64279d6c8d0239af091ebac481ebe0 to your computer and use it in GitHub Desktop.
Save todorok1/1d64279d6c8d0239af091ebac481ebe0 to your computer and use it in GitHub Desktop.
thisキーワードのサンプル
/// <Summary>
/// thisキーワードの確認を行うクラスです。
/// </Summary>
public class ThisTest : MonoBehaviour
{
public int fieldId;
public string fieldName;
/// <Summary>
/// 引数の値をフィールドにセットします。
/// </Summary>
public void SetFieldValue(int fieldId, string fieldName)
{
this.fieldId = fieldId;
this.fieldName = fieldName;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment