public static void Main(string[] args) { using (HelloFS fs = new HelloFS ()) { string[] unhandled = fs.ParseFuseArguments (args); foreach (string key in fs.FuseOptions.Keys) { Console.WriteLine ("Option: {0}={1}", key, fs.FuseOptions [key]); } if (!fs.ParseArguments (unhandled)) return; // fs.MountAt ("path" /* , args? */); fs.Start (); } }
public static void Main(string[] args) { using (HelloFS fs = new HelloFS()) { string[] unhandled = fs.ParseFuseArguments(args); foreach (string key in fs.FuseOptions.Keys) { Console.WriteLine("Option: {0}={1}", key, fs.FuseOptions [key]); } if (!fs.ParseArguments(unhandled)) { return; } // fs.MountAt ("path" /* , args? */); fs.Start(); } }