IronRuby.Builtins.ModuleOps.Attr C# (CSharp) Method

Attr() private method

private Attr ( IronRuby.Runtime.RubyScope scope, RubyModule self ) : void
scope IronRuby.Runtime.RubyScope
self RubyModule
return void
        public static void Attr(RubyScope/*!*/ scope, RubyModule/*!*/ self, [DefaultProtocol, NotNullItems]params string/*!*/[]/*!*/ names) {
            foreach (string name in names) {
                DefineAccessor(scope, self, name, true, false);
            }
        }

Same methods

ModuleOps::Attr ( IronRuby.Runtime.RubyScope scope, RubyModule self, [ name, [ writable ) : void