LSLib.Granny.GR2.WritableSection.CheckMixedMarshalling C# (CSharp) Method

CheckMixedMarshalling() private method

private CheckMixedMarshalling ( object o, Type type, UInt32 count ) : void
o object
type System.Type
count System.UInt32
return void
        internal void CheckMixedMarshalling(object o, Type type, UInt32 count)
        {
            if (type.IsClass)
            {
                var defn = GR2.LookupStructDefinition(type);
                if (defn.MixedMarshal)
                {
                    AddMixedMarshalling(o, count, defn);
                }
            }
        }

Same methods

WritableSection::CheckMixedMarshalling ( object o, UInt32 count ) : void