bigloo.foreign.chdir C# (CSharp) Method

chdir() public static method

public static chdir ( byte path ) : bool
path byte
return bool
        public static bool chdir( byte[]  path )
        {
            try
            {
               Environment.CurrentDirectory= newstring( path );
            }
            catch (Exception)
            {
               return true;
            }

            return false;
        }
foreign