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

SinceAttribute.cs 291B

123456789101112131415
  1. using System;
  2. namespace XCharts.Runtime
  3. {
  4. [AttributeUsage(AttributeTargets.All, AllowMultiple = false)]
  5. public class Since : Attribute
  6. {
  7. public readonly string version;
  8. public Since(string version)
  9. {
  10. this.version = version;
  11. }
  12. }
  13. }