Show / Hide Table of Contents

    Class File

    Inheritance
    Object
    File
    Inherited Members
    Object.ToString()
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.ReferenceEquals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    Object.MemberwiseClone()
    Namespace: Net3_Proxy
    Assembly: Net3-Proxy.dll
    Syntax
    public static class File

    Methods

    | Improve this Doc View Source

    AppendAllLines(String, IEnumerable<String>)

    Declaration
    public static void AppendAllLines(string path, IEnumerable<string> contents)
    Parameters
    Type Name Description
    String path
    IEnumerable<String> contents
    | Improve this Doc View Source

    Delete(String)

    Declaration
    public static void Delete(string fn)
    Parameters
    Type Name Description
    String fn
    | Improve this Doc View Source

    Exists(String)

    Declaration
    public static bool Exists(string fn)
    Parameters
    Type Name Description
    String fn
    Returns
    Type Description
    Boolean
    | Improve this Doc View Source

    OpenRead(String)

    Declaration
    public static FileStream OpenRead(string p)
    Parameters
    Type Name Description
    String p
    Returns
    Type Description
    FileStream
    | Improve this Doc View Source

    ReadAllLines(String)

    Declaration
    public static string[] ReadAllLines(string p)
    Parameters
    Type Name Description
    String p
    Returns
    Type Description
    String[]
    | Improve this Doc View Source

    ReadAllText(String)

    Declaration
    public static string ReadAllText(string fn)
    Parameters
    Type Name Description
    String fn
    Returns
    Type Description
    String
    | Improve this Doc View Source

    ReadAllText(String, Encoding)

    Declaration
    public static string ReadAllText(string fn, Encoding enc)
    Parameters
    Type Name Description
    String fn
    Encoding enc
    Returns
    Type Description
    String
    • Improve this Doc
    • View Source
    Back to top Generated by DocFX