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

FontFamily.cs 256B

1234567891011121314151617181920
  1. using System;
  2. namespace System.Drawing
  3. {
  4. // FontFamily
  5. public class FontFamily : MarshalByRefObject
  6. {
  7. // properties
  8. public string Name { get; private set; }
  9. // constructor
  10. public FontFamily (string name)
  11. {
  12. this.Name = name;
  13. }
  14. }
  15. }