説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

ICommandLineOption.cs 171B

12345678
  1. namespace UnityEditor.TestRunner.CommandLineParser
  2. {
  3. interface ICommandLineOption
  4. {
  5. string ArgName { get; }
  6. void ApplyValue(string value);
  7. }
  8. }