Load() public method

public Load ( ) : object
return object
Example #1
0
        public static object Load(Stream input)
        {
            RubyMarshalReader reader = new RubyMarshalReader(input);

            return(reader.Load());
        }
Example #2
0
 public static object Load(Stream input)
 {
     RubyMarshalReader reader = new RubyMarshalReader(input);
     return reader.Load();
 }