Terraria.ModLoader.ModCompile.ReadIfExists C# (CSharp) Method

ReadIfExists() private static method

private static ReadIfExists ( string path ) : byte[]
path string
return byte[]
        private static byte[] ReadIfExists(string path) {
            return File.Exists(path) ? File.ReadAllBytes(path) : null;
        }