bigloo.foreign.rename C# (CSharp) Method

rename() public static method

public static rename ( byte old, byte to ) : int
old byte
to byte
return int
        public static int rename( byte[] old, byte[] to )
        {
            try
            {
               File.Move( newstring( old ), newstring( to ) );

               return 0;
            }
            catch (Exception)
            {
               return 69;
            }
        }
foreign