IronRuby.Builtins.RubyModule.GetUnderlyingSystemType C# (CSharp) Méthode

GetUnderlyingSystemType() public méthode

public GetUnderlyingSystemType ( ) : Type
Résultat System.Type
        public virtual Type/*!*/ GetUnderlyingSystemType() {
            if (IsClrModule) {
                return _typeTracker.Type;
            } else {
                throw new InvalidOperationException();
            }
        }
        
RubyModule