Mono.Debugger.Languages.TargetFundamentalObject.SetObject C# (CSharp) 메소드

SetObject() 공개 메소드

public SetObject ( System.Thread thread, TargetObject obj ) : void
thread System.Thread
obj TargetObject
리턴 void
        public void SetObject(Thread thread, TargetObject obj)
        {
            thread.ThreadServant.DoTargetAccess (
                delegate (TargetMemoryAccess target) {
                    Type.SetObject (target, Location, obj);
                    return null;
            });
        }