IronRuby.Builtins.RubyModule.GetUnderlyingSystemType C# (CSharp) Метод

GetUnderlyingSystemType() публичный Метод

public GetUnderlyingSystemType ( ) : Type
Результат System.Type
        public virtual Type/*!*/ GetUnderlyingSystemType() {
            if (IsClrModule) {
                return _typeTracker.Type;
            } else {
                throw new InvalidOperationException();
            }
        }
        
RubyModule