CSharp___DllImport.Phone.IO.File7.Open C# (CSharp) Метод

Open() публичный статический Метод

public static Open ( string fullPath, string mode ) : File7
fullPath string
mode string
Результат File7
                public static File7 Open(string fullPath, string mode)
                {
                    int handle = DllImportCaller.lib.fopen7(fullPath, mode);
                    if (handle == 0)
                    {
                        throw new Exception(DllImportCaller.LastError().ToString());
                    }

                    return new File7(handle);
                }