예제 #1
0
 public LocalOptions CopyTo(LocalOptions options)
 {
     options.Type       = Type;
     options.Name       = Name;
     options.Attributes = Attributes;
     return(options);
 }
예제 #2
0
파일: LocalVM.cs 프로젝트: ottrur/dnSpy
 public LocalOptions CopyTo(LocalOptions options)
 {
     options.Type          = this.Type;
     options.Name          = this.Name;
     options.PdbAttributes = this.PdbAttributes;
     return(options);
 }
예제 #3
0
파일: LocalVM.cs 프로젝트: ottrur/dnSpy
        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();
        }
예제 #4
0
파일: LocalVM.cs 프로젝트: 4058665/dnSpy
        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();
        }
예제 #5
0
파일: LocalVM.cs 프로젝트: xi4oyu/dnSpy
        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();
        }
예제 #6
0
		public LocalOptions CopyTo(LocalOptions options) {
			options.Type = this.Type;
			options.Name = this.Name;
			options.PdbAttributes = this.PdbAttributes;
			return options;
		}
예제 #7
0
		public void InitializeFrom(LocalOptions options) {
			this.Type = options.Type;
			this.Name = options.Name;
			this.PdbAttributes = options.PdbAttributes;
		}
예제 #8
0
		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();
		}
예제 #9
0
파일: LocalVM.cs 프로젝트: ottrur/dnSpy
 public void InitializeFrom(LocalOptions options)
 {
     this.Type          = options.Type;
     this.Name          = options.Name;
     this.PdbAttributes = options.PdbAttributes;
 }
예제 #10
0
 public void InitializeFrom(LocalOptions options)
 {
     Type       = options.Type;
     Name       = options.Name;
     Attributes = options.Attributes;
 }