Alexandria.Engines.Unreal.Core.RootObject.CallReader C# (CSharp) Метод

CallReader() публичный статический Метод

Use the DataProcessor of the given type to read properties into the object.
public static CallReader ( Type readerType, RootObject target, Package package, BinaryReader reader, long end ) : object
readerType System.Type The of the object to read.
target RootObject The object to read into.
package Package The this should be placed in.
reader System.IO.BinaryReader The for reading the object.
end long An index just past the end of the 's data.
Результат object
        public static object CallReader(Type readerType, RootObject target, Package package, BinaryReader reader, long end)
        {
            return GetReaderSingleton(readerType).Read(target, package, reader, end);
        }