public LocalOptions CopyTo(LocalOptions options) { options.Type = Type; options.Name = Name; options.Attributes = Attributes; return(options); }
public LocalOptions CopyTo(LocalOptions options) { options.Type = this.Type; options.Name = this.Name; options.PdbAttributes = this.PdbAttributes; return(options); }
public LocalVM(TypeSigCreatorOptions typeSigCreatorOptions, LocalOptions options) { this.typeSigCreatorOptions = typeSigCreatorOptions.Clone("Create a Local Type"); this.typeSigCreatorOptions.IsLocal = true; this.typeSigCreatorOptions.NullTypeSigAllowed = false; this.origOptions = options; Reinitialize(); }
public LocalVM(TypeSigCreatorOptions typeSigCreatorOptions, LocalOptions options) { this.typeSigCreatorOptions = typeSigCreatorOptions.Clone(dnSpy_AsmEditor_Resources.CreateLocalType); this.typeSigCreatorOptions.IsLocal = true; this.typeSigCreatorOptions.NullTypeSigAllowed = false; origOptions = options; Reinitialize(); }
public LocalOptions CopyTo(LocalOptions options) { options.Type = this.Type; options.Name = this.Name; options.PdbAttributes = this.PdbAttributes; return options; }
public void InitializeFrom(LocalOptions options) { this.Type = options.Type; this.Name = options.Name; this.PdbAttributes = options.PdbAttributes; }
public LocalVM(TypeSigCreatorOptions typeSigCreatorOptions, LocalOptions options) { this.typeSigCreatorOptions = typeSigCreatorOptions.Clone(dnSpy_AsmEditor_Resources.CreateLocalType); this.typeSigCreatorOptions.IsLocal = true; this.typeSigCreatorOptions.NullTypeSigAllowed = false; this.origOptions = options; Reinitialize(); }
public void InitializeFrom(LocalOptions options) { Type = options.Type; Name = options.Name; Attributes = options.Attributes; }