Mono.Debugger.Languages.TargetFundamentalType.CreateInstance C# (CSharp) Method

CreateInstance() private method

private CreateInstance ( System.Thread target, object obj ) : TargetFundamentalObject
target System.Thread
obj object
return TargetFundamentalObject
        internal virtual TargetFundamentalObject CreateInstance(Thread target, object obj)
        {
            TargetBlob blob = new TargetBlob (CreateObject (obj), target.TargetMemoryInfo);
            TargetLocation location = new ClientSuppliedTargetLocation (blob);
            return new TargetFundamentalObject (this, location);
        }