Inheritance: FileSystem
コード例 #1
0
ファイル: RedirectFS.cs プロジェクト: jonpryor/mono-fuse
 public static void Main(string[] args)
 {
     using (RedirectFS fs = new RedirectFS ()) {
         string[] unhandled = fs.ParseFuseArguments (args);
         if (!fs.ParseArguments (unhandled))
             return;
         fs.Start ();
     }
 }
コード例 #2
0
 public static void Main(string[] args)
 {
     using (RedirectFS fs = new RedirectFS()) {
         string[] unhandled = fs.ParseFuseArguments(args);
         if (!fs.ParseArguments(unhandled))
         {
             return;
         }
         fs.Start();
     }
 }