Rhino.Drivers.ShellTest.RunFileIfExists C# (CSharp) Méthode

RunFileIfExists() private static méthode

private static RunFileIfExists ( Context cx, Scriptable global, FilePath f ) : void
cx Rhino.Context
global Scriptable
f Sharpen.FilePath
Résultat void
		private static void RunFileIfExists(Context cx, Scriptable global, FilePath f)
		{
			if (f.IsFile())
			{
				Main.ProcessFileNoThrow(cx, global, f.GetPath());
			}
		}