Ejemplo n.º 1
0
        public override void imethod_1(Interface9 writer)
        {
            int length = this.class369_0.Length;

            writer.imethod_4(length);
            for (int index = 0; index < length; ++index)
            {
                Class369.smethod_1(writer, this.class369_0[index]);
            }
            writer.imethod_4(this.int_5);
            writer.imethod_7(this.double_3);
        }
Ejemplo n.º 2
0
        public override void imethod_0(Interface8 reader)
        {
            int length = reader.imethod_5();

            this.class369_0 = new Class369[length];
            for (int index = 0; index < length; ++index)
            {
                this.class369_0[index] = Class369.smethod_0(reader);
            }
            this.int_5    = reader.imethod_5();
            this.double_3 = reader.imethod_8();
        }
 // Token: 0x060023FA RID: 9210 RVA: 0x00079FC8 File Offset: 0x000781C8
 public static bool smethod_0(string directory)
 {
     if (Class369.smethod_2(directory) && Class369.smethod_1(directory))
     {
         bool result;
         try
         {
             Directory.Delete(directory);
             result = true;
         }
         catch (Exception ex)
         {
             ex.smethod_1(new object[]
             {
                 "Directory: " + directory
             });
             result = false;
         }
         return(result);
     }
     return(false);
 }
        // Token: 0x060023FD RID: 9213 RVA: 0x0007A0C8 File Offset: 0x000782C8
        public static bool smethod_3(string fileName)
        {
            if (!Class369.smethod_4(fileName))
            {
                return(false);
            }
            bool result;

            try
            {
                File.Delete(fileName);
                result = true;
            }
            catch (Exception ex)
            {
                ex.smethod_1(new object[]
                {
                    "FileName: " + fileName
                });
                result = false;
            }
            return(result);
        }