親クラス一覧

親クラス一覧
	参考
		The F# 4.1 spec
			5.4.4 Base Type of a Type
        抽象型                System.Object
        配列型                System.Array
        Delegate型           System.MulticastDelegate
        Enum型               System.Enum
        例外型                System.Exception
        インタフェース型       System.Object
        レコード型            System.Object
        Struct型             System.ValueType
        Union型              System.Object
        Variable型           System.Object
	クラス型              型定義時の親クラス
	                      なければSystem.Object
	                      ジェネリック型の部分の訳は
	                      自信がないのでそのまま載せます
	原文
	Class types
         The declared base type of the type definition if the type has one; otherwise,
         System.Object. For generic types C<type-inst>, substitute the formal generic
         parameters of C for type-inst.