Форум программистов, компьютерный форум, киберфорум
C# .NET
Войти
Регистрация
Восстановить пароль
Блоги Сообщество Поиск Заказать работу  
 
Рейтинг 5.00/13: Рейтинг темы: голосов - 13, средняя оценка - 5.00
46 / 46 / 3
Регистрация: 04.02.2011
Сообщений: 199

Как перевести код с MSIL на C#

07.03.2011, 17:06. Показов 2707. Ответов 8
Метки нет (Все метки)

Студворк — интернет-сервис помощи студентам
Мне интересно как это сделать. Вобщем вот написал на MSIL код:
Code
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
.typelist 
{
  Dearchivator.Program/*02000002*/
  Dearchivator.Form1/*02000003*/
  Irn.Properties.Settings/*02000004*/
  Irn.Properties.Resources/*02000005*/
}
 
// Metadata version: v4.0.30319
.assembly extern /*23000001*/ mscorlib
{
  .publickeytoken = (B7 7A 5C 56 19 34 E0 89 )                         // .z\V.4..
  .ver 4:0:0:0
}
.assembly extern /*23000002*/ System.Windows.Forms
{
  .publickeytoken = (B7 7A 5C 56 19 34 E0 89 )                         // .z\V.4..
  .ver 4:0:0:0
}
.assembly extern /*23000003*/ System
{
  .publickeytoken = (B7 7A 5C 56 19 34 E0 89 )                         // .z\V.4..
  .ver 4:0:0:0
}
.assembly extern /*23000004*/ System.Drawing
{
  .publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A )                         // .?_....:
  .ver 4:0:0:0
}
.assembly extern /*23000005*/ ICSharpCode.SharpZipLib
{
  .publickeytoken = (1B 03 E6 AC F1 16 4F 73 )                         // ......Os
  .ver 0:86:0:518
}
.assembly /*20000001*/ Irn
{
  .custom /*0C000002:0A000003*/ instance void [mscorlib/*23000001*/]System.Reflection.AssemblyConfigurationAttribute/*0100000E*/::.ctor(string) /* 0A000003 */ = ( 01 00 00 00 00 ) 
  .custom /*0C000003:0A000004*/ instance void [mscorlib/*23000001*/]System.Reflection.AssemblyCompanyAttribute/*0100000F*/::.ctor(string) /* 0A000004 */ = ( 01 00 00 00 00 ) 
  .custom /*0C000004:0A000005*/ instance void [mscorlib/*23000001*/]System.Reflection.AssemblyProductAttribute/*01000010*/::.ctor(string) /* 0A000005 */ = ( 01 00 03 49 72 6E 00 00 )                         // ...Irn..
  .custom /*0C000005:0A000010*/ instance void [mscorlib/*23000001*/]System.Runtime.CompilerServices.RuntimeCompatibilityAttribute/*0100001C*/::.ctor() /* 0A000010 */ = ( 01 00 01 00 54 02 16 57 72 61 70 4E 6F 6E 45 78   // ....T..WrapNonEx
                                                                                                                                                                          63 65 70 74 69 6F 6E 54 68 72 6F 77 73 01 )       // ceptionThrows.
  .custom /*0C000006:0A000006*/ instance void [mscorlib/*23000001*/]System.Reflection.AssemblyCopyrightAttribute/*01000011*/::.ctor(string) /* 0A000006 */ = ( 01 00 12 43 6F 70 79 72 69 67 68 74 20 C2 A9 20   // ...Copyright .. 
                                                                                                                                                               20 32 30 31 31 00 00 )                            //  2011..
  .custom /*0C000007:0A000007*/ instance void [mscorlib/*23000001*/]System.Reflection.AssemblyTrademarkAttribute/*01000012*/::.ctor(string) /* 0A000007 */ = ( 01 00 00 00 00 ) 
  .custom /*0C000008:0A00000F*/ instance void [mscorlib/*23000001*/]System.Runtime.CompilerServices.CompilationRelaxationsAttribute/*0100001B*/::.ctor(int32) /* 0A00000F */ = ( 01 00 08 00 00 00 00 00 ) 
  .custom /*0C000009:0A000002*/ instance void [mscorlib/*23000001*/]System.Reflection.AssemblyDescriptionAttribute/*0100000D*/::.ctor(string) /* 0A000002 */ = ( 01 00 00 00 00 ) 
  .custom /*0C00000A:0A00000A*/ instance void [mscorlib/*23000001*/]System.Runtime.InteropServices.GuidAttribute/*01000015*/::.ctor(string) /* 0A00000A */ = ( 01 00 24 38 34 35 64 66 62 64 62 2D 66 36 37 64   // ..$845dfbdb-f67d
                                                                                                                                                               2D 34 64 30 37 2D 38 61 34 37 2D 65 35 39 33 32   // -4d07-8a47-e5932
                                                                                                                                                               64 61 33 36 33 63 64 00 00 )                      // da363cd..
 
  // --- Следующий настраиваемый атрибут добавлен автоматически, не следует отменять преобразование в комментарий -------
  //  .custom /*0C00000B:0A00000E*/ instance void [mscorlib/*23000001*/]System.Diagnostics.DebuggableAttribute/*01000019*/::.ctor(valuetype [mscorlib/*23000001*/]System.Diagnostics.DebuggableAttribute/*01000019*//DebuggingModes/*0100001A*/) /* 0A00000E */ = ( 01 00 07 01 00 00 00 00 ) 
 
  .custom /*0C00000C:0A000009*/ instance void [mscorlib/*23000001*/]System.Runtime.InteropServices.ComVisibleAttribute/*01000014*/::.ctor(bool) /* 0A000009 */ = ( 01 00 00 00 00 ) 
  .custom /*0C00000D:0A000001*/ instance void [mscorlib/*23000001*/]System.Reflection.AssemblyTitleAttribute/*0100000C*/::.ctor(string) /* 0A000001 */ = ( 01 00 03 49 72 6E 00 00 )                         // ...Irn..
  .custom /*0C00000E:0A00000C*/ instance void [mscorlib/*23000001*/]System.Reflection.AssemblyFileVersionAttribute/*01000017*/::.ctor(string) /* 0A00000C */ = ( 01 00 07 31 2E 30 2E 30 2E 30 00 00 )             // ...1.0.0.0..
  .custom /*0C00000F:0A00000D*/ instance void [mscorlib/*23000001*/]System.Runtime.Versioning.TargetFrameworkAttribute/*01000018*/::.ctor(string) /* 0A00000D */ = ( 01 00 29 2E 4E 45 54 46 72 61 6D 65 77 6F 72 6B   // ..).NETFramework
                                                                                                                                                                     2C 56 65 72 73 69 6F 6E 3D 76 34 2E 30 2C 50 72   // ,Version=v4.0,Pr
                                                                                                                                                                     6F 66 69 6C 65 3D 43 6C 69 65 6E 74 01 00 54 0E   // ofile=Client..T.
                                                                                                                                                                     14 46 72 61 6D 65 77 6F 72 6B 44 69 73 70 6C 61   // .FrameworkDispla
                                                                                                                                                                     79 4E 61 6D 65 1F 2E 4E 45 54 20 46 72 61 6D 65   // yName..NET Frame
                                                                                                                                                                     77 6F 72 6B 20 34 20 43 6C 69 65 6E 74 20 50 72   // work 4 Client Pr
                                                                                                                                                                     6F 66 69 6C 65 )                                  // ofile
  .hash algorithm 0x00008004
  .ver 1:0:0:0
}
.mresource /*28000001*/ public Dearchivator.Form1.resources
{
  // Offset: 0x00000000 Length: 0x00004D84
  // ВНИМАНИЕ: создан управляемый файл ресурсов Dearchivator.Form1.resources
}
.mresource /*28000002*/ public Irn.Properties.Resources.resources
{
  // Offset: 0x00004D88 Length: 0x00000809
  // ВНИМАНИЕ: создан управляемый файл ресурсов Irn.Properties.Resources.resources
}
.module Irn.exe
// MVID: {4539C699-DE63-43CD-B4C2-380F91AFF473}
.imagebase 0x00400000
.file alignment 0x00000200
.stackreserve 0x00100000
.subsystem 0x0002       // WINDOWS_GUI
.corflags 0x00000003    //  ILONLY 32BITREQUIRED
// Image base: 0x004A0000
 
 
// =============== CLASS MEMBERS DECLARATION ===================
 
.class /*02000002*/ private abstract auto ansi sealed beforefieldinit Dearchivator.Program
       extends [mscorlib/*23000001*/]System.Object/*01000001*/
{
  .method /*06000001*/ private hidebysig static 
          void  Main() cil managed
  // SIG: 00 00 01
  {
    .entrypoint
    .custom /*0C000001:0A000011*/ instance void [mscorlib/*23000001*/]System.STAThreadAttribute/*0100001D*/::.ctor() /* 0A000011 */ = ( 01 00 00 00 ) 
    // Метод начинается по RVA 0x2050
    // Размер кода:       26 (0x1a)
    .maxstack  8
    IL_0000:  /* 00   |                  */ nop
    IL_0001:  /* 28   | (0A)000012       */ call       void [System.Windows.Forms/*23000002*/]System.Windows.Forms.Application/*0100001E*/::EnableVisualStyles() /* 0A000012 */
    IL_0006:  /* 00   |                  */ nop
    IL_0007:  /* 16   |                  */ ldc.i4.0
    IL_0008:  /* 28   | (0A)000013       */ call       void [System.Windows.Forms/*23000002*/]System.Windows.Forms.Application/*0100001E*/::SetCompatibleTextRenderingDefault(bool) /* 0A000013 */
    IL_000d:  /* 00   |                  */ nop
    IL_000e:  /* 73   | (06)000004       */ newobj     instance void Dearchivator.Form1/*02000003*/::.ctor() /* 06000004 */
    IL_0013:  /* 28   | (0A)000014       */ call       void [System.Windows.Forms/*23000002*/]System.Windows.Forms.Application/*0100001E*/::Run(class [System.Windows.Forms/*23000002*/]System.Windows.Forms.Form/*01000002*/) /* 0A000014 */
    IL_0018:  /* 00   |                  */ nop
    IL_0019:  /* 2A   |                  */ ret
  } // end of method Program::Main
 
} // end of class Dearchivator.Program
 
.class /*02000003*/ public auto ansi beforefieldinit Dearchivator.Form1
       extends [System.Windows.Forms/*23000002*/]System.Windows.Forms.Form/*01000002*/
{
  .field /*04000001*/ private class [System/*23000003*/]System.ComponentModel.IContainer/*01000004*/ components
  .field /*04000002*/ private class [System.Windows.Forms/*23000002*/]System.Windows.Forms.PictureBox/*01000005*/ pictureBox1
  .field /*04000003*/ private class [System.Windows.Forms/*23000002*/]System.Windows.Forms.FolderBrowserDialog/*01000006*/ folderBrowserDialog1
  .field /*04000004*/ private string ZipFileName
  .method /*06000002*/ family hidebysig virtual 
          instance void  Dispose(bool disposing) cil managed
  // SIG: 20 01 01 02
  {
    // Метод начинается по RVA 0x206c
    // Размер кода:       43 (0x2b)
    .maxstack  2
    .locals /*11000001*/ init (bool V_0)
    IL_0000:  /* 00   |                  */ nop
    IL_0001:  /* 03   |                  */ ldarg.1
    IL_0002:  /* 2C   | 0B               */ brfalse.s  IL_000f
 
    IL_0004:  /* 02   |                  */ ldarg.0
    IL_0005:  /* 7B   | (04)000001       */ ldfld      class [System/*23000003*/]System.ComponentModel.IContainer/*01000004*/ Dearchivator.Form1/*02000003*/::components /* 04000001 */
    IL_000a:  /* 14   |                  */ ldnull
    IL_000b:  /* FE01 |                  */ ceq
    IL_000d:  /* 2B   | 01               */ br.s       IL_0010
 
    IL_000f:  /* 17   |                  */ ldc.i4.1
    IL_0010:  /* 0A   |                  */ stloc.0
    IL_0011:  /* 06   |                  */ ldloc.0
    IL_0012:  /* 2D   | 0E               */ brtrue.s   IL_0022
 
    IL_0014:  /* 00   |                  */ nop
    IL_0015:  /* 02   |                  */ ldarg.0
    IL_0016:  /* 7B   | (04)000001       */ ldfld      class [System/*23000003*/]System.ComponentModel.IContainer/*01000004*/ Dearchivator.Form1/*02000003*/::components /* 04000001 */
    IL_001b:  /* 6F   | (0A)000015       */ callvirt   instance void [mscorlib/*23000001*/]System.IDisposable/*0100001F*/::Dispose() /* 0A000015 */
    IL_0020:  /* 00   |                  */ nop
    IL_0021:  /* 00   |                  */ nop
    IL_0022:  /* 02   |                  */ ldarg.0
    IL_0023:  /* 03   |                  */ ldarg.1
    IL_0024:  /* 28   | (0A)000016       */ call       instance void [System.Windows.Forms/*23000002*/]System.Windows.Forms.Form/*01000002*/::Dispose(bool) /* 0A000016 */
    IL_0029:  /* 00   |                  */ nop
    IL_002a:  /* 2A   |                  */ ret
  } // end of method Form1::Dispose
 
  .method /*06000003*/ private hidebysig 
          instance void  InitializeComponent() cil managed
  // SIG: 20 00 01
  {
    // Метод начинается по RVA 0x20a4
    // Размер кода:       341 (0x155)
    .maxstack  4
    .locals /*11000002*/ init (class [System/*23000003*/]System.ComponentModel.ComponentResourceManager/*01000022*/ V_0)
    IL_0000:  /* 00   |                  */ nop
    IL_0001:  /* D0   | (02)000003       */ ldtoken    Dearchivator.Form1/*02000003*/
    IL_0006:  /* 28   | (0A)000017       */ call       class [mscorlib/*23000001*/]System.Type/*01000020*/ [mscorlib/*23000001*/]System.Type/*01000020*/::GetTypeFromHandle(valuetype [mscorlib/*23000001*/]System.RuntimeTypeHandle/*01000021*/) /* 0A000017 */
    IL_000b:  /* 73   | (0A)000018       */ newobj     instance void [System/*23000003*/]System.ComponentModel.ComponentResourceManager/*01000022*/::.ctor(class [mscorlib/*23000001*/]System.Type/*01000020*/) /* 0A000018 */
    IL_0010:  /* 0A   |                  */ stloc.0
    IL_0011:  /* 02   |                  */ ldarg.0
    IL_0012:  /* 73   | (0A)000019       */ newobj     instance void [System.Windows.Forms/*23000002*/]System.Windows.Forms.PictureBox/*01000005*/::.ctor() /* 0A000019 */
    IL_0017:  /* 7D   | (04)000002       */ stfld      class [System.Windows.Forms/*23000002*/]System.Windows.Forms.PictureBox/*01000005*/ Dearchivator.Form1/*02000003*/::pictureBox1 /* 04000002 */
    IL_001c:  /* 02   |                  */ ldarg.0
    IL_001d:  /* 73   | (0A)00001A       */ newobj     instance void [System.Windows.Forms/*23000002*/]System.Windows.Forms.FolderBrowserDialog/*01000006*/::.ctor() /* 0A00001A */
    IL_0022:  /* 7D   | (04)000003       */ stfld      class [System.Windows.Forms/*23000002*/]System.Windows.Forms.FolderBrowserDialog/*01000006*/ Dearchivator.Form1/*02000003*/::folderBrowserDialog1 /* 04000003 */
    IL_0027:  /* 02   |                  */ ldarg.0
    IL_0028:  /* 7B   | (04)000002       */ ldfld      class [System.Windows.Forms/*23000002*/]System.Windows.Forms.PictureBox/*01000005*/ Dearchivator.Form1/*02000003*/::pictureBox1 /* 04000002 */
    IL_002d:  /* 6F   | (0A)00001B       */ callvirt   instance void [System/*23000003*/]System.ComponentModel.ISupportInitialize/*01000023*/::BeginInit() /* 0A00001B */
    IL_0032:  /* 00   |                  */ nop
    IL_0033:  /* 02   |                  */ ldarg.0
    IL_0034:  /* 28   | (0A)00001C       */ call       instance void [System.Windows.Forms/*23000002*/]System.Windows.Forms.Control/*01000024*/::SuspendLayout() /* 0A00001C */
    IL_0039:  /* 00   |                  */ nop
    IL_003a:  /* 02   |                  */ ldarg.0
    IL_003b:  /* 7B   | (04)000002       */ ldfld      class [System.Windows.Forms/*23000002*/]System.Windows.Forms.PictureBox/*01000005*/ Dearchivator.Form1/*02000003*/::pictureBox1 /* 04000002 */
    IL_0040:  /* 28   | (06)00000F       */ call       class [System.Drawing/*23000004*/]System.Drawing.Bitmap/*0100000B*/ Irn.Properties.Resources/*02000005*/::get_Im() /* 0600000F */
    IL_0045:  /* 6F   | (0A)00001D       */ callvirt   instance void [System.Windows.Forms/*23000002*/]System.Windows.Forms.PictureBox/*01000005*/::set_Image(class [System.Drawing/*23000004*/]System.Drawing.Image/*01000025*/) /* 0A00001D */
    IL_004a:  /* 00   |                  */ nop
    IL_004b:  /* 02   |                  */ ldarg.0
    IL_004c:  /* 7B   | (04)000002       */ ldfld      class [System.Windows.Forms/*23000002*/]System.Windows.Forms.PictureBox/*01000005*/ Dearchivator.Form1/*02000003*/::pictureBox1 /* 04000002 */
    IL_0051:  /* 1F   | 0C               */ ldc.i4.s   12
    IL_0053:  /* 1F   | 0C               */ ldc.i4.s   12
    IL_0055:  /* 73   | (0A)00001E       */ newobj     instance void [System.Drawing/*23000004*/]System.Drawing.Point/*01000026*/::.ctor(int32,
                                                                                                                                         int32) /* 0A00001E */
    IL_005a:  /* 6F   | (0A)00001F       */ callvirt   instance void [System.Windows.Forms/*23000002*/]System.Windows.Forms.Control/*01000024*/::set_Location(valuetype [System.Drawing/*23000004*/]System.Drawing.Point/*01000026*/) /* 0A00001F */
    IL_005f:  /* 00   |                  */ nop
    IL_0060:  /* 02   |                  */ ldarg.0
    IL_0061:  /* 7B   | (04)000002       */ ldfld      class [System.Windows.Forms/*23000002*/]System.Windows.Forms.PictureBox/*01000005*/ Dearchivator.Form1/*02000003*/::pictureBox1 /* 04000002 */
    IL_0066:  /* 72   | (70)000001       */ ldstr      "pictureBox1" /* 70000001 */
    IL_006b:  /* 6F   | (0A)000020       */ callvirt   instance void [System.Windows.Forms/*23000002*/]System.Windows.Forms.Control/*01000024*/::set_Name(string) /* 0A000020 */
    IL_0070:  /* 00   |                  */ nop
    IL_0071:  /* 02   |                  */ ldarg.0
    IL_0072:  /* 7B   | (04)000002       */ ldfld      class [System.Windows.Forms/*23000002*/]System.Windows.Forms.PictureBox/*01000005*/ Dearchivator.Form1/*02000003*/::pictureBox1 /* 04000002 */
    IL_0077:  /* 20   | DA000000         */ ldc.i4     0xda
    IL_007c:  /* 1F   | 3E               */ ldc.i4.s   62
    IL_007e:  /* 73   | (0A)000021       */ newobj     instance void [System.Drawing/*23000004*/]System.Drawing.Size/*01000027*/::.ctor(int32,
                                                                                                                                        int32) /* 0A000021 */
    IL_0083:  /* 6F   | (0A)000022       */ callvirt   instance void [System.Windows.Forms/*23000002*/]System.Windows.Forms.Control/*01000024*/::set_Size(valuetype [System.Drawing/*23000004*/]System.Drawing.Size/*01000027*/) /* 0A000022 */
    IL_0088:  /* 00   |                  */ nop
    IL_0089:  /* 02   |                  */ ldarg.0
    IL_008a:  /* 7B   | (04)000002       */ ldfld      class [System.Windows.Forms/*23000002*/]System.Windows.Forms.PictureBox/*01000005*/ Dearchivator.Form1/*02000003*/::pictureBox1 /* 04000002 */
    IL_008f:  /* 16   |                  */ ldc.i4.0
    IL_0090:  /* 6F   | (0A)000023       */ callvirt   instance void [System.Windows.Forms/*23000002*/]System.Windows.Forms.PictureBox/*01000005*/::set_TabIndex(int32) /* 0A000023 */
    IL_0095:  /* 00   |                  */ nop
    IL_0096:  /* 02   |                  */ ldarg.0
    IL_0097:  /* 7B   | (04)000002       */ ldfld      class [System.Windows.Forms/*23000002*/]System.Windows.Forms.PictureBox/*01000005*/ Dearchivator.Form1/*02000003*/::pictureBox1 /* 04000002 */
    IL_009c:  /* 16   |                  */ ldc.i4.0
    IL_009d:  /* 6F   | (0A)000024       */ callvirt   instance void [System.Windows.Forms/*23000002*/]System.Windows.Forms.PictureBox/*01000005*/::set_TabStop(bool) /* 0A000024 */
    IL_00a2:  /* 00   |                  */ nop
    IL_00a3:  /* 02   |                  */ ldarg.0
    IL_00a4:  /* 22   | 0000C040         */ ldc.r4     6.
    IL_00a9:  /* 22   | 00005041         */ ldc.r4     13.
    IL_00ae:  /* 73   | (0A)000025       */ newobj     instance void [System.Drawing/*23000004*/]System.Drawing.SizeF/*01000028*/::.ctor(float32,
                                                                                                                                         float32) /* 0A000025 */
    IL_00b3:  /* 28   | (0A)000026       */ call       instance void [System.Windows.Forms/*23000002*/]System.Windows.Forms.ContainerControl/*01000029*/::set_AutoScaleDimensions(valuetype [System.Drawing/*23000004*/]System.Drawing.SizeF/*01000028*/) /* 0A000026 */
    IL_00b8:  /* 00   |                  */ nop
    IL_00b9:  /* 02   |                  */ ldarg.0
    IL_00ba:  /* 17   |                  */ ldc.i4.1
    IL_00bb:  /* 28   | (0A)000027       */ call       instance void [System.Windows.Forms/*23000002*/]System.Windows.Forms.ContainerControl/*01000029*/::set_AutoScaleMode(valuetype [System.Windows.Forms/*23000002*/]System.Windows.Forms.AutoScaleMode/*0100002A*/) /* 0A000027 */
    IL_00c0:  /* 00   |                  */ nop
    IL_00c1:  /* 02   |                  */ ldarg.0
    IL_00c2:  /* 20   | F1000000         */ ldc.i4     0xf1
    IL_00c7:  /* 1F   | 56               */ ldc.i4.s   86
    IL_00c9:  /* 73   | (0A)000021       */ newobj     instance void [System.Drawing/*23000004*/]System.Drawing.Size/*01000027*/::.ctor(int32,
                                                                                                                                        int32) /* 0A000021 */
    IL_00ce:  /* 28   | (0A)000028       */ call       instance void [System.Windows.Forms/*23000002*/]System.Windows.Forms.Form/*01000002*/::set_ClientSize(valuetype [System.Drawing/*23000004*/]System.Drawing.Size/*01000027*/) /* 0A000028 */
    IL_00d3:  /* 00   |                  */ nop
    IL_00d4:  /* 02   |                  */ ldarg.0
    IL_00d5:  /* 28   | (0A)000029       */ call       instance class [System.Windows.Forms/*23000002*/]System.Windows.Forms.Control/*01000024*//ControlCollection/*0100002B*/ [System.Windows.Forms/*23000002*/]System.Windows.Forms.Control/*01000024*/::get_Controls() /* 0A000029 */
    IL_00da:  /* 02   |                  */ ldarg.0
    IL_00db:  /* 7B   | (04)000002       */ ldfld      class [System.Windows.Forms/*23000002*/]System.Windows.Forms.PictureBox/*01000005*/ Dearchivator.Form1/*02000003*/::pictureBox1 /* 04000002 */
    IL_00e0:  /* 6F   | (0A)00002A       */ callvirt   instance void [System.Windows.Forms/*23000002*/]System.Windows.Forms.Control/*01000024*//ControlCollection/*0100002B*/::Add(class [System.Windows.Forms/*23000002*/]System.Windows.Forms.Control/*01000024*/) /* 0A00002A */
    IL_00e5:  /* 00   |                  */ nop
    IL_00e6:  /* 02   |                  */ ldarg.0
    IL_00e7:  /* 18   |                  */ ldc.i4.2
    IL_00e8:  /* 28   | (0A)00002B       */ call       instance void [System.Windows.Forms/*23000002*/]System.Windows.Forms.Form/*01000002*/::set_FormBorderStyle(valuetype [System.Windows.Forms/*23000002*/]System.Windows.Forms.FormBorderStyle/*0100002C*/) /* 0A00002B */
    IL_00ed:  /* 00   |                  */ nop
    IL_00ee:  /* 02   |                  */ ldarg.0
    IL_00ef:  /* 06   |                  */ ldloc.0
    IL_00f0:  /* 72   | (70)000019       */ ldstr      "$this.Icon" /* 70000019 */
    IL_00f5:  /* 6F   | (0A)00002C       */ callvirt   instance object [mscorlib/*23000001*/]System.Resources.ResourceManager/*01000009*/::GetObject(string) /* 0A00002C */
    IL_00fa:  /* 74   | (01)00002D       */ castclass  [System.Drawing/*23000004*/]System.Drawing.Icon/*0100002D*/
    IL_00ff:  /* 28   | (0A)00002D       */ call       instance void [System.Windows.Forms/*23000002*/]System.Windows.Forms.Form/*01000002*/::set_Icon(class [System.Drawing/*23000004*/]System.Drawing.Icon/*0100002D*/) /* 0A00002D */
    IL_0104:  /* 00   |                  */ nop
    IL_0105:  /* 02   |                  */ ldarg.0
    IL_0106:  /* 16   |                  */ ldc.i4.0
    IL_0107:  /* 28   | (0A)00002E       */ call       instance void [System.Windows.Forms/*23000002*/]System.Windows.Forms.Form/*01000002*/::set_MaximizeBox(bool) /* 0A00002E */
    IL_010c:  /* 00   |                  */ nop
    IL_010d:  /* 02   |                  */ ldarg.0
    IL_010e:  /* 16   |                  */ ldc.i4.0
    IL_010f:  /* 28   | (0A)00002F       */ call       instance void [System.Windows.Forms/*23000002*/]System.Windows.Forms.Form/*01000002*/::set_MinimizeBox(bool) /* 0A00002F */
    IL_0114:  /* 00   |                  */ nop
    IL_0115:  /* 02   |                  */ ldarg.0
    IL_0116:  /* 72   | (70)00002F       */ ldstr      "Form1" /* 7000002F */
    IL_011b:  /* 28   | (0A)000020       */ call       instance void [System.Windows.Forms/*23000002*/]System.Windows.Forms.Control/*01000024*/::set_Name(string) /* 0A000020 */
    IL_0120:  /* 00   |                  */ nop
    IL_0121:  /* 02   |                  */ ldarg.0
    IL_0122:  /* 72   | (70)00003B       */ ldstr      bytearray (14 04 35 04 30 04 40 04 45 04 38 04 32 04 30 04   // ..5.0.@.E.8.2.0.
                                                                  42 04 3E 04 40 04 )                               // B.>.@. /* 7000003B */
    IL_0127:  /* 6F   | (0A)000030       */ callvirt   instance void [System.Windows.Forms/*23000002*/]System.Windows.Forms.Control/*01000024*/::set_Text(string) /* 0A000030 */
    IL_012c:  /* 00   |                  */ nop
    IL_012d:  /* 02   |                  */ ldarg.0
    IL_012e:  /* 02   |                  */ ldarg.0
    IL_012f:  /* FE06 | (06)000007       */ ldftn      instance void Dearchivator.Form1/*02000003*/::Form1_Load(object,
                                                                                                                class [mscorlib/*23000001*/]System.EventArgs/*01000008*/) /* 06000007 */
    IL_0135:  /* 73   | (0A)000031       */ newobj     instance void [mscorlib/*23000001*/]System.EventHandler/*0100002E*/::.ctor(object,
                                                                                                                                  native int) /* 0A000031 */
    IL_013a:  /* 28   | (0A)000032       */ call       instance void [System.Windows.Forms/*23000002*/]System.Windows.Forms.Form/*01000002*/::add_Load(class [mscorlib/*23000001*/]System.EventHandler/*0100002E*/) /* 0A000032 */
    IL_013f:  /* 00   |                  */ nop
    IL_0140:  /* 02   |                  */ ldarg.0
    IL_0141:  /* 7B   | (04)000002       */ ldfld      class [System.Windows.Forms/*23000002*/]System.Windows.Forms.PictureBox/*01000005*/ Dearchivator.Form1/*02000003*/::pictureBox1 /* 04000002 */
    IL_0146:  /* 6F   | (0A)000033       */ callvirt   instance void [System/*23000003*/]System.ComponentModel.ISupportInitialize/*01000023*/::EndInit() /* 0A000033 */
    IL_014b:  /* 00   |                  */ nop
    IL_014c:  /* 02   |                  */ ldarg.0
    IL_014d:  /* 16   |                  */ ldc.i4.0
    IL_014e:  /* 28   | (0A)000034       */ call       instance void [System.Windows.Forms/*23000002*/]System.Windows.Forms.Control/*01000024*/::ResumeLayout(bool) /* 0A000034 */
    IL_0153:  /* 00   |                  */ nop
    IL_0154:  /* 2A   |                  */ ret
  } // end of method Form1::InitializeComponent
 
  .method /*06000004*/ public hidebysig specialname rtspecialname 
          instance void  .ctor() cil managed
  // SIG: 20 00 01
  {
    // Метод начинается по RVA 0x2208
    // Размер кода:       96 (0x60)
    .maxstack  4
    IL_0000:  /* 02   |                  */ ldarg.0
    IL_0001:  /* 14   |                  */ ldnull
    IL_0002:  /* 7D   | (04)000001       */ stfld      class [System/*23000003*/]System.ComponentModel.IContainer/*01000004*/ Dearchivator.Form1/*02000003*/::components /* 04000001 */
    IL_0007:  /* 02   |                  */ ldarg.0
    IL_0008:  /* 72   | (70)000053       */ ldstr      "" /* 70000053 */
    IL_000d:  /* 7D   | (04)000004       */ stfld      string Dearchivator.Form1/*02000003*/::ZipFileName /* 04000004 */
    IL_0012:  /* 02   |                  */ ldarg.0
    IL_0013:  /* 28   | (0A)000035       */ call       instance void [System.Windows.Forms/*23000002*/]System.Windows.Forms.Form/*01000002*/::.ctor() /* 0A000035 */
    IL_0018:  /* 00   |                  */ nop
    IL_0019:  /* 00   |                  */ nop
    IL_001a:  /* 02   |                  */ ldarg.0
    IL_001b:  /* 28   | (06)000003       */ call       instance void Dearchivator.Form1/*02000003*/::InitializeComponent() /* 06000003 */
    IL_0020:  /* 00   |                  */ nop
    IL_0021:  /* 02   |                  */ ldarg.0
    IL_0022:  /* 7B   | (04)000002       */ ldfld      class [System.Windows.Forms/*23000002*/]System.Windows.Forms.PictureBox/*01000005*/ Dearchivator.Form1/*02000003*/::pictureBox1 /* 04000002 */
    IL_0027:  /* 17   |                  */ ldc.i4.1
    IL_0028:  /* 6F   | (0A)000036       */ callvirt   instance void [System.Windows.Forms/*23000002*/]System.Windows.Forms.Control/*01000024*/::set_AllowDrop(bool) /* 0A000036 */
    IL_002d:  /* 00   |                  */ nop
    IL_002e:  /* 02   |                  */ ldarg.0
    IL_002f:  /* 7B   | (04)000002       */ ldfld      class [System.Windows.Forms/*23000002*/]System.Windows.Forms.PictureBox/*01000005*/ Dearchivator.Form1/*02000003*/::pictureBox1 /* 04000002 */
    IL_0034:  /* 02   |                  */ ldarg.0
    IL_0035:  /* FE06 | (06)000005       */ ldftn      instance void Dearchivator.Form1/*02000003*/::textBox1_DragEnter(object,
                                                                                                                        class [System.Windows.Forms/*23000002*/]System.Windows.Forms.DragEventArgs/*01000007*/) /* 06000005 */
    IL_003b:  /* 73   | (0A)000037       */ newobj     instance void [System.Windows.Forms/*23000002*/]System.Windows.Forms.DragEventHandler/*0100002F*/::.ctor(object,
                                                                                                                                                                native int) /* 0A000037 */
    IL_0040:  /* 6F   | (0A)000038       */ callvirt   instance void [System.Windows.Forms/*23000002*/]System.Windows.Forms.Control/*01000024*/::add_DragEnter(class [System.Windows.Forms/*23000002*/]System.Windows.Forms.DragEventHandler/*0100002F*/) /* 0A000038 */
    IL_0045:  /* 00   |                  */ nop
    IL_0046:  /* 02   |                  */ ldarg.0
    IL_0047:  /* 7B   | (04)000002       */ ldfld      class [System.Windows.Forms/*23000002*/]System.Windows.Forms.PictureBox/*01000005*/ Dearchivator.Form1/*02000003*/::pictureBox1 /* 04000002 */
    IL_004c:  /* 02   |                  */ ldarg.0
    IL_004d:  /* FE06 | (06)000006       */ ldftn      instance void Dearchivator.Form1/*02000003*/::textBox1_DragDrop(object,
                                                                                                                       class [System.Windows.Forms/*23000002*/]System.Windows.Forms.DragEventArgs/*01000007*/) /* 06000006 */
    IL_0053:  /* 73   | (0A)000037       */ newobj     instance void [System.Windows.Forms/*23000002*/]System.Windows.Forms.DragEventHandler/*0100002F*/::.ctor(object,
                                                                                                                                                                native int) /* 0A000037 */
    IL_0058:  /* 6F   | (0A)000039       */ callvirt   instance void [System.Windows.Forms/*23000002*/]System.Windows.Forms.Control/*01000024*/::add_DragDrop(class [System.Windows.Forms/*23000002*/]System.Windows.Forms.DragEventHandler/*0100002F*/) /* 0A000039 */
    IL_005d:  /* 00   |                  */ nop
    IL_005e:  /* 00   |                  */ nop
    IL_005f:  /* 2A   |                  */ ret
  } // end of method Form1::.ctor
 
  .method /*06000005*/ private hidebysig 
          instance void  textBox1_DragEnter(object sender,
                                            class [System.Windows.Forms/*23000002*/]System.Windows.Forms.DragEventArgs/*01000007*/ e) cil managed
  // SIG: 20 02 01 1C 12 1D
  {
    // Метод начинается по RVA 0x2274
    // Размер кода:       49 (0x31)
    .maxstack  2
    .locals /*11000001*/ init (bool V_0)
    IL_0000:  /* 00   |                  */ nop
    IL_0001:  /* 04   |                  */ ldarg.2
    IL_0002:  /* 6F   | (0A)00003A       */ callvirt   instance class [System.Windows.Forms/*23000002*/]System.Windows.Forms.IDataObject/*01000030*/ [System.Windows.Forms/*23000002*/]System.Windows.Forms.DragEventArgs/*01000007*/::get_Data() /* 0A00003A */
    IL_0007:  /* 7E   | (0A)00003B       */ ldsfld     string [System.Windows.Forms/*23000002*/]System.Windows.Forms.DataFormats/*01000031*/::FileDrop /* 0A00003B */
    IL_000c:  /* 6F   | (0A)00003C       */ callvirt   instance bool [System.Windows.Forms/*23000002*/]System.Windows.Forms.IDataObject/*01000030*/::GetDataPresent(string) /* 0A00003C */
    IL_0011:  /* 2C   | 10               */ brfalse.s  IL_0023
 
    IL_0013:  /* 04   |                  */ ldarg.2
    IL_0014:  /* 6F   | (0A)00003D       */ callvirt   instance valuetype [System.Windows.Forms/*23000002*/]System.Windows.Forms.DragDropEffects/*01000032*/ [System.Windows.Forms/*23000002*/]System.Windows.Forms.DragEventArgs/*01000007*/::get_AllowedEffect() /* 0A00003D */
    IL_0019:  /* 18   |                  */ ldc.i4.2
    IL_001a:  /* 5F   |                  */ and
    IL_001b:  /* 18   |                  */ ldc.i4.2
    IL_001c:  /* FE01 |                  */ ceq
    IL_001e:  /* 16   |                  */ ldc.i4.0
    IL_001f:  /* FE01 |                  */ ceq
    IL_0021:  /* 2B   | 01               */ br.s       IL_0024
 
    IL_0023:  /* 17   |                  */ ldc.i4.1
    IL_0024:  /* 0A   |                  */ stloc.0
    IL_0025:  /* 06   |                  */ ldloc.0
    IL_0026:  /* 2D   | 08               */ brtrue.s   IL_0030
 
    IL_0028:  /* 04   |                  */ ldarg.2
    IL_0029:  /* 18   |                  */ ldc.i4.2
    IL_002a:  /* 6F   | (0A)00003E       */ callvirt   instance void [System.Windows.Forms/*23000002*/]System.Windows.Forms.DragEventArgs/*01000007*/::set_Effect(valuetype [System.Windows.Forms/*23000002*/]System.Windows.Forms.DragDropEffects/*01000032*/) /* 0A00003E */
    IL_002f:  /* 00   |                  */ nop
    IL_0030:  /* 2A   |                  */ ret
  } // end of method Form1::textBox1_DragEnter
 
  .method /*06000006*/ private hidebysig 
          instance void  textBox1_DragDrop(object sender,
                                           class [System.Windows.Forms/*23000002*/]System.Windows.Forms.DragEventArgs/*01000007*/ e) cil managed
  // SIG: 20 02 01 1C 12 1D
  {
    // Метод начинается по RVA 0x22b4
    // Размер кода:       279 (0x117)
    .maxstack  5
    .locals /*11000003*/ init (string[] V_0,
             int32 V_1,
             valuetype [System.Windows.Forms/*23000002*/]System.Windows.Forms.DialogResult/*01000037*/ V_2,
             bool V_3)
    IL_0000:  /* 00   |                  */ nop
    IL_0001:  /* 04   |                  */ ldarg.2
    IL_0002:  /* 6F   | (0A)00003A       */ callvirt   instance class [System.Windows.Forms/*23000002*/]System.Windows.Forms.IDataObject/*01000030*/ [System.Windows.Forms/*23000002*/]System.Windows.Forms.DragEventArgs/*01000007*/::get_Data() /* 0A00003A */
    IL_0007:  /* 7E   | (0A)00003B       */ ldsfld     string [System.Windows.Forms/*23000002*/]System.Windows.Forms.DataFormats/*01000031*/::FileDrop /* 0A00003B */
    IL_000c:  /* 6F   | (0A)00003C       */ callvirt   instance bool [System.Windows.Forms/*23000002*/]System.Windows.Forms.IDataObject/*01000030*/::GetDataPresent(string) /* 0A00003C */
    IL_0011:  /* 2C   | 0E               */ brfalse.s  IL_0021
 
    IL_0013:  /* 04   |                  */ ldarg.2
    IL_0014:  /* 6F   | (0A)00003F       */ callvirt   instance valuetype [System.Windows.Forms/*23000002*/]System.Windows.Forms.DragDropEffects/*01000032*/ [System.Windows.Forms/*23000002*/]System.Windows.Forms.DragEventArgs/*01000007*/::get_Effect() /* 0A00003F */
    IL_0019:  /* 18   |                  */ ldc.i4.2
    IL_001a:  /* FE01 |                  */ ceq
    IL_001c:  /* 16   |                  */ ldc.i4.0
    IL_001d:  /* FE01 |                  */ ceq
    IL_001f:  /* 2B   | 01               */ br.s       IL_0022
 
    IL_0021:  /* 17   |                  */ ldc.i4.1
    IL_0022:  /* 0D   |                  */ stloc.3
    IL_0023:  /* 09   |                  */ ldloc.3
    IL_0024:  /* 3A   | ED000000         */ brtrue     IL_0116
 
    IL_0029:  /* 00   |                  */ nop
    .try
    {
      IL_002a:  /* 00   |                  */ nop
      IL_002b:  /* 04   |                  */ ldarg.2
      IL_002c:  /* 6F   | (0A)00003A       */ callvirt   instance class [System.Windows.Forms/*23000002*/]System.Windows.Forms.IDataObject/*01000030*/ [System.Windows.Forms/*23000002*/]System.Windows.Forms.DragEventArgs/*01000007*/::get_Data() /* 0A00003A */
      IL_0031:  /* 7E   | (0A)00003B       */ ldsfld     string [System.Windows.Forms/*23000002*/]System.Windows.Forms.DataFormats/*01000031*/::FileDrop /* 0A00003B */
      IL_0036:  /* 6F   | (0A)000040       */ callvirt   instance object [System.Windows.Forms/*23000002*/]System.Windows.Forms.IDataObject/*01000030*/::GetData(string) /* 0A000040 */
      IL_003b:  /* 74   | (1B)000001       */ castclass  string[]/*1B000001*/
      IL_0040:  /* 0A   |                  */ stloc.0
      IL_0041:  /* 02   |                  */ ldarg.0
      IL_0042:  /* 72   | (70)000053       */ ldstr      "" /* 70000053 */
      IL_0047:  /* 7D   | (04)000004       */ stfld      string Dearchivator.Form1/*02000003*/::ZipFileName /* 04000004 */
      IL_004c:  /* 16   |                  */ ldc.i4.0
      IL_004d:  /* 0B   |                  */ stloc.1
      IL_004e:  /* 38   | 98000000         */ br         IL_00eb
 
      IL_0053:  /* 00   |                  */ nop
      IL_0054:  /* 02   |                  */ ldarg.0
      IL_0055:  /* 25   |                  */ dup
      IL_0056:  /* 7B   | (04)000004       */ ldfld      string Dearchivator.Form1/*02000003*/::ZipFileName /* 04000004 */
      IL_005b:  /* 06   |                  */ ldloc.0
      IL_005c:  /* 07   |                  */ ldloc.1
      IL_005d:  /* 9A   |                  */ ldelem.ref
      IL_005e:  /* 28   | (0A)000041       */ call       string [mscorlib/*23000001*/]System.String/*01000033*/::Concat(string,
                                                                                                                        string) /* 0A000041 */
      IL_0063:  /* 7D   | (04)000004       */ stfld      string Dearchivator.Form1/*02000003*/::ZipFileName /* 04000004 */
      IL_0068:  /* 06   |                  */ ldloc.0
      IL_0069:  /* 07   |                  */ ldloc.1
      IL_006a:  /* 9A   |                  */ ldelem.ref
      IL_006b:  /* 28   | (0A)000042       */ call       string [mscorlib/*23000001*/]System.IO.Path/*01000034*/::GetExtension(string) /* 0A000042 */
      IL_0070:  /* 72   | (70)000055       */ ldstr      ".zip" /* 70000055 */
      IL_0075:  /* 19   |                  */ ldc.i4.3
      IL_0076:  /* 28   | (0A)000043       */ call       bool [mscorlib/*23000001*/]System.String/*01000033*/::Equals(string,
                                                                                                                      string,
                                                                                                                      valuetype [mscorlib/*23000001*/]System.StringComparison/*01000035*/) /* 0A000043 */
      IL_007b:  /* 16   |                  */ ldc.i4.0
      IL_007c:  /* FE01 |                  */ ceq
      IL_007e:  /* 0D   |                  */ stloc.3
      IL_007f:  /* 09   |                  */ ldloc.3
      IL_0080:  /* 2D   | 4E               */ brtrue.s   IL_00d0
 
      IL_0082:  /* 00   |                  */ nop
      IL_0083:  /* 02   |                  */ ldarg.0
      IL_0084:  /* 7B   | (04)000003       */ ldfld      class [System.Windows.Forms/*23000002*/]System.Windows.Forms.FolderBrowserDialog/*01000006*/ Dearchivator.Form1/*02000003*/::folderBrowserDialog1 /* 04000003 */
      IL_0089:  /* 6F   | (0A)000044       */ callvirt   instance valuetype [System.Windows.Forms/*23000002*/]System.Windows.Forms.DialogResult/*01000037*/ [System.Windows.Forms/*23000002*/]System.Windows.Forms.CommonDialog/*01000036*/::ShowDialog() /* 0A000044 */
      IL_008e:  /* 0C   |                  */ stloc.2
      IL_008f:  /* 08   |                  */ ldloc.2
      IL_0090:  /* 17   |                  */ ldc.i4.1
      IL_0091:  /* FE01 |                  */ ceq
      IL_0093:  /* 16   |                  */ ldc.i4.0
      IL_0094:  /* FE01 |                  */ ceq
      IL_0096:  /* 0D   |                  */ stloc.3
      IL_0097:  /* 09   |                  */ ldloc.3
      IL_0098:  /* 2D   | 1F               */ brtrue.s   IL_00b9
 
      IL_009a:  /* 00   |                  */ nop
      IL_009b:  /* 73   | (0A)000045       */ newobj     instance void [ICSharpCode.SharpZipLib/*23000005*/]ICSharpCode.SharpZipLib.Zip.FastZip/*01000038*/::.ctor() /* 0A000045 */
      IL_00a0:  /* 02   |                  */ ldarg.0
      IL_00a1:  /* 7B   | (04)000004       */ ldfld      string Dearchivator.Form1/*02000003*/::ZipFileName /* 04000004 */
      IL_00a6:  /* 02   |                  */ ldarg.0
      IL_00a7:  /* 7B   | (04)000003       */ ldfld      class [System.Windows.Forms/*23000002*/]System.Windows.Forms.FolderBrowserDialog/*01000006*/ Dearchivator.Form1/*02000003*/::folderBrowserDialog1 /* 04000003 */
      IL_00ac:  /* 6F   | (0A)000046       */ callvirt   instance string [System.Windows.Forms/*23000002*/]System.Windows.Forms.FolderBrowserDialog/*01000006*/::get_SelectedPath() /* 0A000046 */
      IL_00b1:  /* 14   |                  */ ldnull
      IL_00b2:  /* 28   | (0A)000047       */ call       instance void [ICSharpCode.SharpZipLib/*23000005*/]ICSharpCode.SharpZipLib.Zip.FastZip/*01000038*/::ExtractZip(string,
                                                                                                                                                                        string,
                                                                                                                                                                        string) /* 0A000047 */
      IL_00b7:  /* 00   |                  */ nop
      IL_00b8:  /* 00   |                  */ nop
      IL_00b9:  /* 14   |                  */ ldnull
      IL_00ba:  /* 72   | (70)00005F       */ ldstr      bytearray (13 04 3E 04 42 04 3E 04 32 04 3E 04 )             // ..>.B.>.2.>. /* 7000005F */
      IL_00bf:  /* 72   | (70)00006D       */ ldstr      bytearray (12 04 4B 04 3F 04 3E 04 3B 04 3D 04 35 04 3D 04   // ..K.?.>.;.=.5.=.
                                                                    3E 04 20 00 43 04 41 04 3F 04 35 04 48 04 3D 04   // >. .C.A.?.5.H.=.
                                                                    3E 04 )                                           // >. /* 7000006D */
      IL_00c4:  /* 16   |                  */ ldc.i4.0
      IL_00c5:  /* 1F   | 40               */ ldc.i4.s   64
      IL_00c7:  /* 28   | (0A)000048       */ call       valuetype [System.Windows.Forms/*23000002*/]System.Windows.Forms.DialogResult/*01000037*/ [System.Windows.Forms/*23000002*/]System.Windows.Forms.MessageBox/*01000039*/::Show(class [System.Windows.Forms/*23000002*/]System.Windows.Forms.IWin32Window/*0100003A*/,
                                                                                                                                                                                                                                       string,
                                                                                                                                                                                                                                       string,
                                                                                                                                                                                                                                       valuetype [System.Windows.Forms/*23000002*/]System.Windows.Forms.MessageBoxButtons/*0100003B*/,
                                                                                                                                                                                                                                       valuetype [System.Windows.Forms/*23000002*/]System.Windows.Forms.MessageBoxIcon/*0100003C*/) /* 0A000048 */
      IL_00cc:  /* 26   |                  */ pop
      IL_00cd:  /* 00   |                  */ nop
      IL_00ce:  /* 2B   | 16               */ br.s       IL_00e6
 
      IL_00d0:  /* 00   |                  */ nop
      IL_00d1:  /* 14   |                  */ ldnull
      IL_00d2:  /* 72   | (70)000091       */ ldstr      bytearray (1F 04 3E 04 36 04 30 04 3B 04 43 04 39 04 41 04   // ..>.6.0.;.C.9.A.
                                                                    42 04 30 04 2C 00 20 00 43 04 3A 04 30 04 36 04   // B.0.,. .C.:.0.6.
                                                                    38 04 42 04 35 04 20 00 44 04 30 04 39 04 3B 04   // 8.B.5. .D.0.9.;.
                                                                    20 00 2E 00 7A 00 69 00 70 00 )                   //  ...z.i.p. /* 70000091 */
      IL_00d7:  /* 72   | (70)0000CD       */ ldstr      bytearray (1E 04 48 04 38 04 31 04 3A 04 30 04 )             // ..H.8.1.:.0. /* 700000CD */
      IL_00dc:  /* 16   |                  */ ldc.i4.0
      IL_00dd:  /* 1F   | 10               */ ldc.i4.s   16
      IL_00df:  /* 28   | (0A)000048       */ call       valuetype [System.Windows.Forms/*23000002*/]System.Windows.Forms.DialogResult/*01000037*/ [System.Windows.Forms/*23000002*/]System.Windows.Forms.MessageBox/*01000039*/::Show(class [System.Windows.Forms/*23000002*/]System.Windows.Forms.IWin32Window/*0100003A*/,
                                                                                                                                                                                                                                       string,
                                                                                                                                                                                                                                       string,
                                                                                                                                                                                                                                       valuetype [System.Windows.Forms/*23000002*/]System.Windows.Forms.MessageBoxButtons/*0100003B*/,
                                                                                                                                                                                                                                       valuetype [System.Windows.Forms/*23000002*/]System.Windows.Forms.MessageBoxIcon/*0100003C*/) /* 0A000048 */
      IL_00e4:  /* 26   |                  */ pop
      IL_00e5:  /* 00   |                  */ nop
      IL_00e6:  /* 00   |                  */ nop
      IL_00e7:  /* 07   |                  */ ldloc.1
      IL_00e8:  /* 17   |                  */ ldc.i4.1
      IL_00e9:  /* 58   |                  */ add
      IL_00ea:  /* 0B   |                  */ stloc.1
      IL_00eb:  /* 07   |                  */ ldloc.1
      IL_00ec:  /* 06   |                  */ ldloc.0
      IL_00ed:  /* 8E   |                  */ ldlen
      IL_00ee:  /* 69   |                  */ conv.i4
      IL_00ef:  /* FE04 |                  */ clt
      IL_00f1:  /* 0D   |                  */ stloc.3
      IL_00f2:  /* 09   |                  */ ldloc.3
      IL_00f3:  /* 3A   | 5BFFFFFF         */ brtrue     IL_0053
 
      IL_00f8:  /* 00   |                  */ nop
      IL_00f9:  /* DE   | 19               */ leave.s    IL_0114
 
    }  // end .try
    catch [mscorlib/*23000001*/]System.Object/*01000001*/ 
    {
      IL_00fb:  /* 26   |                  */ pop
      IL_00fc:  /* 00   |                  */ nop
      IL_00fd:  /* 14   |                  */ ldnull
      IL_00fe:  /* 72   | (70)0000DB       */ ldstr      bytearray (1A 04 30 04 3A 04 30 04 4F 04 2D 00 42 04 3E 04   // ..0.:.0.O.-.B.>.
                                                                    20 00 3E 04 48 04 38 04 31 04 3A 04 30 04 )       //  .>.H.8.1.:.0. /* 700000DB */
      IL_0103:  /* 72   | (70)0000CD       */ ldstr      bytearray (1E 04 48 04 38 04 31 04 3A 04 30 04 )             // ..H.8.1.:.0. /* 700000CD */
      IL_0108:  /* 16   |                  */ ldc.i4.0
      IL_0109:  /* 1F   | 10               */ ldc.i4.s   16
      IL_010b:  /* 28   | (0A)000048       */ call       valuetype [System.Windows.Forms/*23000002*/]System.Windows.Forms.DialogResult/*01000037*/ [System.Windows.Forms/*23000002*/]System.Windows.Forms.MessageBox/*01000039*/::Show(class [System.Windows.Forms/*23000002*/]System.Windows.Forms.IWin32Window/*0100003A*/,
                                                                                                                                                                                                                                       string,
                                                                                                                                                                                                                                       string,
                                                                                                                                                                                                                                       valuetype [System.Windows.Forms/*23000002*/]System.Windows.Forms.MessageBoxButtons/*0100003B*/,
                                                                                                                                                                                                                                       valuetype [System.Windows.Forms/*23000002*/]System.Windows.Forms.MessageBoxIcon/*0100003C*/) /* 0A000048 */
      IL_0110:  /* 26   |                  */ pop
      IL_0111:  /* 00   |                  */ nop
      IL_0112:  /* DE   | 00               */ leave.s    IL_0114
 
    }  // end handler
    // HEX: 00 00 00 00 2A 00 00 00 D1 00 00 00 FB 00 00 00 19 00 00 00 01 00 00 01
    IL_0114:  /* 00   |                  */ nop
    IL_0115:  /* 00   |                  */ nop
    IL_0116:  /* 2A   |                  */ ret
  } // end of method Form1::textBox1_DragDrop
 
  .method /*06000007*/ private hidebysig 
          instance void  Form1_Load(object sender,
                                    class [mscorlib/*23000001*/]System.EventArgs/*01000008*/ e) cil managed
  // SIG: 20 02 01 1C 12 21
  {
    // Метод начинается по RVA 0x23e8
    // Размер кода:       10 (0xa)
    .maxstack  8
    IL_0000:  /* 00   |                  */ nop
    IL_0001:  /* 02   |                  */ ldarg.0
    IL_0002:  /* 17   |                  */ ldc.i4.1
    IL_0003:  /* 28   | (0A)000049       */ call       instance void [System.Windows.Forms/*23000002*/]System.Windows.Forms.Form/*01000002*/::set_TopMost(bool) /* 0A000049 */
    IL_0008:  /* 00   |                  */ nop
    IL_0009:  /* 2A   |                  */ ret
  } // end of method Form1::Form1_Load
 
} // end of class Dearchivator.Form1
 
.class /*02000004*/ private auto ansi sealed beforefieldinit Irn.Properties.Settings
       extends [System/*23000003*/]System.Configuration.ApplicationSettingsBase/*01000003*/
{
  .custom /*0C000012:0A00004A*/ instance void [mscorlib/*23000001*/]System.Runtime.CompilerServices.CompilerGeneratedAttribute/*0100003D*/::.ctor() /* 0A00004A */ = ( 01 00 00 00 ) 
  .custom /*0C000013:0A00004B*/ instance void [System/*23000003*/]System.CodeDom.Compiler.GeneratedCodeAttribute/*0100003E*/::.ctor(string,
                                                                                                                                    string) /* 0A00004B */ = ( 01 00 4B 4D 69 63 72 6F 73 6F 66 74 2E 56 69 73   // ..KMicrosoft.Vis
                                                                                                                                                               75 61 6C 53 74 75 64 69 6F 2E 45 64 69 74 6F 72   // ualStudio.Editor
                                                                                                                                                               73 2E 53 65 74 74 69 6E 67 73 44 65 73 69 67 6E   // s.SettingsDesign
                                                                                                                                                               65 72 2E 53 65 74 74 69 6E 67 73 53 69 6E 67 6C   // er.SettingsSingl
                                                                                                                                                               65 46 69 6C 65 47 65 6E 65 72 61 74 6F 72 08 31   // eFileGenerator.1
                                                                                                                                                               30 2E 30 2E 30 2E 30 00 00 )                      // 0.0.0.0..
  .field /*04000005*/ private static class Irn.Properties.Settings/*02000004*/ defaultInstance
  .method /*06000008*/ public hidebysig specialname static 
          class Irn.Properties.Settings/*02000004*/ 
          get_Default() cil managed
  // SIG: 00 00 12 10
  {
    // Метод начинается по RVA 0x23f4
    // Размер кода:       11 (0xb)
    .maxstack  1
    .locals /*11000004*/ init (class Irn.Properties.Settings/*02000004*/ V_0)
    IL_0000:  /* 00   |                  */ nop
    IL_0001:  /* 7E   | (04)000005       */ ldsfld     class Irn.Properties.Settings/*02000004*/ Irn.Properties.Settings/*02000004*/::defaultInstance /* 04000005 */
    IL_0006:  /* 0A   |                  */ stloc.0
    IL_0007:  /* 2B   | 00               */ br.s       IL_0009
 
    IL_0009:  /* 06   |                  */ ldloc.0
    IL_000a:  /* 2A   |                  */ ret
  } // end of method Settings::get_Default
 
  .method /*06000009*/ public hidebysig specialname rtspecialname 
          instance void  .ctor() cil managed
  // SIG: 20 00 01
  {
    // Метод начинается по RVA 0x2421
    // Размер кода:       7 (0x7)
    .maxstack  8
    IL_0000:  /* 02   |                  */ ldarg.0
    IL_0001:  /* 28   | (0A)00004D       */ call       instance void [System/*23000003*/]System.Configuration.ApplicationSettingsBase/*01000003*/::.ctor() /* 0A00004D */
    IL_0006:  /* 2A   |                  */ ret
  } // end of method Settings::.ctor
 
  .method /*0600000A*/ private hidebysig specialname rtspecialname static 
          void  .cctor() cil managed
  // SIG: 00 00 01
  {
    // Метод начинается по RVA 0x240b
    // Размер кода:       21 (0x15)
    .maxstack  8
    IL_0000:  /* 73   | (06)000009       */ newobj     instance void Irn.Properties.Settings/*02000004*/::.ctor() /* 06000009 */
    IL_0005:  /* 28   | (0A)00004C       */ call       class [System/*23000003*/]System.Configuration.SettingsBase/*0100003F*/ [System/*23000003*/]System.Configuration.SettingsBase/*0100003F*/::Synchronized(class [System/*23000003*/]System.Configuration.SettingsBase/*0100003F*/) /* 0A00004C */
    IL_000a:  /* 74   | (02)000004       */ castclass  Irn.Properties.Settings/*02000004*/
    IL_000f:  /* 80   | (04)000005       */ stsfld     class Irn.Properties.Settings/*02000004*/ Irn.Properties.Settings/*02000004*/::defaultInstance /* 04000005 */
    IL_0014:  /* 2A   |                  */ ret
  } // end of method Settings::.cctor
 
  .property /*17000001*/ class Irn.Properties.Settings/*02000004*/
          Default()
  {
    .get class Irn.Properties.Settings/*02000004*/ Irn.Properties.Settings/*02000004*/::get_Default() /* 06000008 */
  } // end of property Settings::Default
} // end of class Irn.Properties.Settings
 
.class /*02000005*/ private auto ansi beforefieldinit Irn.Properties.Resources
       extends [mscorlib/*23000001*/]System.Object/*01000001*/
{
  .custom /*0C000014:0A00004E*/ instance void [mscorlib/*23000001*/]System.Diagnostics.DebuggerNonUserCodeAttribute/*01000040*/::.ctor() /* 0A00004E */ = ( 01 00 00 00 ) 
  .custom /*0C000015:0A00004B*/ instance void [System/*23000003*/]System.CodeDom.Compiler.GeneratedCodeAttribute/*0100003E*/::.ctor(string,
                                                                                                                                    string) /* 0A00004B */ = ( 01 00 33 53 79 73 74 65 6D 2E 52 65 73 6F 75 72   // ..3System.Resour
                                                                                                                                                               63 65 73 2E 54 6F 6F 6C 73 2E 53 74 72 6F 6E 67   // ces.Tools.Strong
                                                                                                                                                               6C 79 54 79 70 65 64 52 65 73 6F 75 72 63 65 42   // lyTypedResourceB
                                                                                                                                                               75 69 6C 64 65 72 07 34 2E 30 2E 30 2E 30 00 00 ) // uilder.4.0.0.0..
  .custom /*0C000016:0A00004A*/ instance void [mscorlib/*23000001*/]System.Runtime.CompilerServices.CompilerGeneratedAttribute/*0100003D*/::.ctor() /* 0A00004A */ = ( 01 00 00 00 ) 
  .field /*04000006*/ private static class [mscorlib/*23000001*/]System.Resources.ResourceManager/*01000009*/ resourceMan
  .field /*04000007*/ private static class [mscorlib/*23000001*/]System.Globalization.CultureInfo/*0100000A*/ resourceCulture
  .method /*0600000B*/ assembly hidebysig specialname rtspecialname 
          instance void  .ctor() cil managed
  // SIG: 20 00 01
  {
    // Метод начинается по RVA 0x2429
    // Размер кода:       10 (0xa)
    .maxstack  8
    IL_0000:  /* 02   |                  */ ldarg.0
    IL_0001:  /* 28   | (0A)00004F       */ call       instance void [mscorlib/*23000001*/]System.Object/*01000001*/::.ctor() /* 0A00004F */
    IL_0006:  /* 00   |                  */ nop
    IL_0007:  /* 00   |                  */ nop
    IL_0008:  /* 00   |                  */ nop
    IL_0009:  /* 2A   |                  */ ret
  } // end of method Resources::.ctor
 
  .method /*0600000C*/ assembly hidebysig specialname static 
          class [mscorlib/*23000001*/]System.Resources.ResourceManager/*01000009*/ 
          get_ResourceManager() cil managed
  // SIG: 00 00 12 25
  {
    // Метод начинается по RVA 0x2434
    // Размер кода:       63 (0x3f)
    .maxstack  3
    .locals /*11000005*/ init (class [mscorlib/*23000001*/]System.Resources.ResourceManager/*01000009*/ V_0,
             class [mscorlib/*23000001*/]System.Resources.ResourceManager/*01000009*/ V_1,
             bool V_2)
    IL_0000:  /* 00   |                  */ nop
    IL_0001:  /* 7E   | (04)000006       */ ldsfld     class [mscorlib/*23000001*/]System.Resources.ResourceManager/*01000009*/ Irn.Properties.Resources/*02000005*/::resourceMan /* 04000006 */
    IL_0006:  /* 14   |                  */ ldnull
    IL_0007:  /* 28   | (0A)000050       */ call       bool [mscorlib/*23000001*/]System.Object/*01000001*/::ReferenceEquals(object,
                                                                                                                             object) /* 0A000050 */
    IL_000c:  /* 16   |                  */ ldc.i4.0
    IL_000d:  /* FE01 |                  */ ceq
    IL_000f:  /* 0C   |                  */ stloc.2
    IL_0010:  /* 08   |                  */ ldloc.2
    IL_0011:  /* 2D   | 22               */ brtrue.s   IL_0035
 
    IL_0013:  /* 00   |                  */ nop
    IL_0014:  /* 72   | (70)0000FB       */ ldstr      "Irn.Properties.Resources" /* 700000FB */
    IL_0019:  /* D0   | (02)000005       */ ldtoken    Irn.Properties.Resources/*02000005*/
    IL_001e:  /* 28   | (0A)000017       */ call       class [mscorlib/*23000001*/]System.Type/*01000020*/ [mscorlib/*23000001*/]System.Type/*01000020*/::GetTypeFromHandle(valuetype [mscorlib/*23000001*/]System.RuntimeTypeHandle/*01000021*/) /* 0A000017 */
    IL_0023:  /* 6F   | (0A)000051       */ callvirt   instance class [mscorlib/*23000001*/]System.Reflection.Assembly/*01000041*/ [mscorlib/*23000001*/]System.Type/*01000020*/::get_Assembly() /* 0A000051 */
    IL_0028:  /* 73   | (0A)000052       */ newobj     instance void [mscorlib/*23000001*/]System.Resources.ResourceManager/*01000009*/::.ctor(string,
                                                                                                                                               class [mscorlib/*23000001*/]System.Reflection.Assembly/*01000041*/) /* 0A000052 */
    IL_002d:  /* 0A   |                  */ stloc.0
    IL_002e:  /* 06   |                  */ ldloc.0
    IL_002f:  /* 80   | (04)000006       */ stsfld     class [mscorlib/*23000001*/]System.Resources.ResourceManager/*01000009*/ Irn.Properties.Resources/*02000005*/::resourceMan /* 04000006 */
    IL_0034:  /* 00   |                  */ nop
    IL_0035:  /* 7E   | (04)000006       */ ldsfld     class [mscorlib/*23000001*/]System.Resources.ResourceManager/*01000009*/ Irn.Properties.Resources/*02000005*/::resourceMan /* 04000006 */
    IL_003a:  /* 0B   |                  */ stloc.1
    IL_003b:  /* 2B   | 00               */ br.s       IL_003d
 
    IL_003d:  /* 07   |                  */ ldloc.1
    IL_003e:  /* 2A   |                  */ ret
  } // end of method Resources::get_ResourceManager
 
  .method /*0600000D*/ assembly hidebysig specialname static 
          class [mscorlib/*23000001*/]System.Globalization.CultureInfo/*0100000A*/ 
          get_Culture() cil managed
  // SIG: 00 00 12 29
  {
    // Метод начинается по RVA 0x2480
    // Размер кода:       11 (0xb)
    .maxstack  1
    .locals /*11000006*/ init (class [mscorlib/*23000001*/]System.Globalization.CultureInfo/*0100000A*/ V_0)
    IL_0000:  /* 00   |                  */ nop
    IL_0001:  /* 7E   | (04)000007       */ ldsfld     class [mscorlib/*23000001*/]System.Globalization.CultureInfo/*0100000A*/ Irn.Properties.Resources/*02000005*/::resourceCulture /* 04000007 */
    IL_0006:  /* 0A   |                  */ stloc.0
    IL_0007:  /* 2B   | 00               */ br.s       IL_0009
 
    IL_0009:  /* 06   |                  */ ldloc.0
    IL_000a:  /* 2A   |                  */ ret
  } // end of method Resources::get_Culture
 
  .method /*0600000E*/ assembly hidebysig specialname static 
          void  set_Culture(class [mscorlib/*23000001*/]System.Globalization.CultureInfo/*0100000A*/ 'value') cil managed
  // SIG: 00 01 01 12 29
  {
    // Метод начинается по RVA 0x2497
    // Размер кода:       8 (0x8)
    .maxstack  8
    IL_0000:  /* 00   |                  */ nop
    IL_0001:  /* 02   |                  */ ldarg.0
    IL_0002:  /* 80   | (04)000007       */ stsfld     class [mscorlib/*23000001*/]System.Globalization.CultureInfo/*0100000A*/ Irn.Properties.Resources/*02000005*/::resourceCulture /* 04000007 */
    IL_0007:  /* 2A   |                  */ ret
  } // end of method Resources::set_Culture
 
  .method /*0600000F*/ assembly hidebysig specialname static 
          class [System.Drawing/*23000004*/]System.Drawing.Bitmap/*0100000B*/ 
          get_Im() cil managed
  // SIG: 00 00 12 2D
  {
    // Метод начинается по RVA 0x24a0
    // Размер кода:       33 (0x21)
    .maxstack  3
    .locals /*11000007*/ init (object V_0,
             class [System.Drawing/*23000004*/]System.Drawing.Bitmap/*0100000B*/ V_1)
    IL_0000:  /* 00   |                  */ nop
    IL_0001:  /* 28   | (06)00000C       */ call       class [mscorlib/*23000001*/]System.Resources.ResourceManager/*01000009*/ Irn.Properties.Resources/*02000005*/::get_ResourceManager() /* 0600000C */
    IL_0006:  /* 72   | (70)00012D       */ ldstr      "Im" /* 7000012D */
    IL_000b:  /* 7E   | (04)000007       */ ldsfld     class [mscorlib/*23000001*/]System.Globalization.CultureInfo/*0100000A*/ Irn.Properties.Resources/*02000005*/::resourceCulture /* 04000007 */
    IL_0010:  /* 6F   | (0A)000053       */ callvirt   instance object [mscorlib/*23000001*/]System.Resources.ResourceManager/*01000009*/::GetObject(string,
                                                                                                                                                     class [mscorlib/*23000001*/]System.Globalization.CultureInfo/*0100000A*/) /* 0A000053 */
    IL_0015:  /* 0A   |                  */ stloc.0
    IL_0016:  /* 06   |                  */ ldloc.0
    IL_0017:  /* 74   | (01)00000B       */ castclass  [System.Drawing/*23000004*/]System.Drawing.Bitmap/*0100000B*/
    IL_001c:  /* 0B   |                  */ stloc.1
    IL_001d:  /* 2B   | 00               */ br.s       IL_001f
 
    IL_001f:  /* 07   |                  */ ldloc.1
    IL_0020:  /* 2A   |                  */ ret
  } // end of method Resources::get_Im
 
  .property /*17000002*/ class [mscorlib/*23000001*/]System.Resources.ResourceManager/*01000009*/
          ResourceManager()
  {
    .custom /*0C000010:0A000054*/ instance void [System/*23000003*/]System.ComponentModel.EditorBrowsableAttribute/*01000042*/::.ctor(valuetype [System/*23000003*/]System.ComponentModel.EditorBrowsableState/*01000043*/) /* 0A000054 */ = ( 01 00 02 00 00 00 00 00 ) 
    .get class [mscorlib/*23000001*/]System.Resources.ResourceManager/*01000009*/ Irn.Properties.Resources/*02000005*/::get_ResourceManager() /* 0600000C */
  } // end of property Resources::ResourceManager
  .property /*17000003*/ class [mscorlib/*23000001*/]System.Globalization.CultureInfo/*0100000A*/
          Culture()
  {
    .custom /*0C000011:0A000054*/ instance void [System/*23000003*/]System.ComponentModel.EditorBrowsableAttribute/*01000042*/::.ctor(valuetype [System/*23000003*/]System.ComponentModel.EditorBrowsableState/*01000043*/) /* 0A000054 */ = ( 01 00 02 00 00 00 00 00 ) 
    .get class [mscorlib/*23000001*/]System.Globalization.CultureInfo/*0100000A*/ Irn.Properties.Resources/*02000005*/::get_Culture() /* 0600000D */
    .set void Irn.Properties.Resources/*02000005*/::set_Culture(class [mscorlib/*23000001*/]System.Globalization.CultureInfo/*0100000A*/) /* 0600000E */
  } // end of property Resources::Culture
  .property /*17000004*/ class [System.Drawing/*23000004*/]System.Drawing.Bitmap/*0100000B*/
          Im()
  {
    .get class [System.Drawing/*23000004*/]System.Drawing.Bitmap/*0100000B*/ Irn.Properties.Resources/*02000005*/::get_Im() /* 0600000F */
  } // end of property Resources::Im
} // end of class Irn.Properties.Resources
0
Programming
Эксперт
39485 / 9562 / 3019
Регистрация: 12.04.2006
Сообщений: 41,671
Блог
07.03.2011, 17:06
Ответы с готовыми решениями:

Как перевести код C# на IL(MSIL)
Мне интересно, как это сделать. Пробовал через рефлектор не получилось, что меня смутило(я обычно через рефлектор всегда перевожу на MC++).

Как вставить кусок кода в MSIL?
Вообщем дело такое: Есть MSIL код(рабочий, компилируется), мне нужно вставить в него свою функцию и потом в другой функции вставить вызов...

Как перевести код с паскаля на Java. Пытался сам но код не хочет работать переведенный
А сам код на паскале работает. Вот код на паскале var i,j,m,c,d: integer; A:array of integer; begin c:=1; ...

8
 Аватар для HIMen
4340 / 1509 / 101
Регистрация: 12.04.2009
Сообщений: 2,342
07.03.2011, 17:22
Скомпилируй, открой рефлектором
0
46 / 46 / 3
Регистрация: 04.02.2011
Сообщений: 199
07.03.2011, 17:24  [ТС]
Рефлектор делает C# код с ошибками, а как сделать без ошибок(может есть какой-то веб-сайт?)
0
 Аватар для Flexo
10 / 9 / 5
Регистрация: 26.02.2011
Сообщений: 150
07.03.2011, 17:26
А это случаем не С# код шифруется обфускаторами в MSIL дабы его прочитать не могли?
0
 Аватар для sigmov
585 / 372 / 63
Регистрация: 22.07.2009
Сообщений: 875
Записей в блоге: 4
07.03.2011, 17:42
Цитата Сообщение от mak326428 Посмотреть сообщение
Рефлектор делает C# код с ошибками, а как сделать без ошибок(может есть какой-то веб-сайт?)
Ручками....
0
 Аватар для Alex_Sabaka
638 / 499 / 77
Регистрация: 28.07.2010
Сообщений: 895
07.03.2011, 17:43
Цитата Сообщение от Flexo Посмотреть сообщение
А это случаем не С# код шифруется обфускаторами в MSIL дабы его прочитать не могли?
Э.... WTF...?
0
 Аватар для sigmov
585 / 372 / 63
Регистрация: 22.07.2009
Сообщений: 875
Записей в блоге: 4
07.03.2011, 17:44
Цитата Сообщение от Flexo Посмотреть сообщение
А это случаем не С# код шифруется обфускаторами в MSIL дабы его прочитать не могли?
Любой NET код можно обработать обфускатором, не только C#.
Но сдеся признаки импользования обфускатора не просматриваются......
0
 Аватар для HIMen
4340 / 1509 / 101
Регистрация: 12.04.2009
Сообщений: 2,342
07.03.2011, 23:57
mak326428, выложи файл ресурсов
0
46 / 46 / 3
Регистрация: 04.02.2011
Сообщений: 199
08.03.2011, 08:18  [ТС]
Это просто пример. Я написал прогу и декомпилировал её на MSIL. Я знаю её исходный код, но как бы её перевести на C#, если бы я не знал сишарпского исходного кода.
0
Надоела реклама? Зарегистрируйтесь и она исчезнет полностью.
inter-admin
Эксперт
29715 / 6470 / 2152
Регистрация: 06.03.2009
Сообщений: 28,500
Блог
08.03.2011, 08:18
Помогаю со студенческими работами здесь

Как перевести этот код на код Delphi
uses crt; const nmax=100; var a:arrayof integer; n,i,k,j,x:integer; begin clrscr; randomize; repeat write('Размер...

Как перевести код на PyQt в код на PySide?
Собственно сабж. Создается табличка QAbstractTableModel с двумя колонками и в последствии заполняется данными. Основная проблема в том, что...

Как шестнадцатеричный код перевести в код символа
Подскажите пожалуйста. Есть шестнадцатеричный код как его перевести в код символа: ...

Как вызвать с помощью команды Calli(MSIL) процедуру из unmanaged DLL
Задача в том чтобы написать на MSIL процедуру вызова функции из unmanaged DLL не прибегая к стандартным вариантам типа DllImport и Declare...

Как победить вирус Trojan.MSIL.Agent dzyr подскажите пожалуста
Занимался диагностикой автор. Комп оставался подключенным к интернету. Открыл прогу диагностики Хонды. С дуру нажал ключ активации проги...


Искать еще темы с ответами

Или воспользуйтесь поиском по форуму:
9
Ответ Создать тему
Новые блоги и статьи
Знаешь почему 90% людей редко бывают счастливыми?
kumehtar 14.04.2026
Потому что они ждут. Ждут выходных, ждут отпуска, ждут удачного момента. . . а удачный момент так и не приходит.
Фиксация колонок в отчете СКД
Maks 14.04.2026
Фиксация колонок в СКД отчета типа Таблица. Задача: зафиксировать три левых колонки в отчете. Процедура ПриКомпоновкеРезультата(ДокументРезультат, ДанныеРасшифровки, СтандартнаяОбработка) / / . . .
Настройки VS Code
Loafer 13.04.2026
{ "cmake. configureOnOpen": false, "diffEditor. ignoreTrimWhitespace": true, "editor. guides. bracketPairs": "active", "extensions. ignoreRecommendations": true, . . .
Оптимизация кода на разграничение прав доступа к элементам формы
Maks 13.04.2026
Алгоритм из решения ниже реализован на нетиповом документе, разработанного в конфигурации КА2. Задачи, как таковой, поставлено не было, проделанное ниже исключительно моя инициатива. Было так:. . .
Контроль заполнения и очистка дат в зависимости от значения перечислений
Maks 12.04.2026
Алгоритм из решения ниже реализован на примере нетипового документа "ПланированиеПерсонала", разработанного в конфигурации КА2. Задача: реализовать контроль корректности заполнения дат назначения. . .
Архитектура слоя интернета для сервера-слоя.
Hrethgir 11.04.2026
В продолжение https:/ / www. cyberforum. ru/ blogs/ 223907/ 10860. html Знаешь что я подумал? Раз мы все источники пишем в голове ветки, то ничего не мешает добавить в голову такой источник, который сам. . .
Подстановка значения реквизита справочника в табличную часть документа
Maks 10.04.2026
Алгоритм из решения ниже реализован на примере нетипового документа "ПланированиеПерсонала", разработанного в конфигурации КА2. Задача: при выборе сотрудника (справочник Сотрудники) в ТЧ документа. . .
Очистка реквизитов документа при копировании
Maks 09.04.2026
Алгоритм из решения ниже применим как для типовых, так и для нетиповых документов на самых различных конфигурациях. Задача: при копировании документа очищать определенные реквизиты и табличную. . .
КиберФорум - форум программистов, компьютерный форум, программирование
Powered by vBulletin
Copyright ©2000 - 2026, CyberForum.ru