Terraria.ModLoader.ModCompile.ReadIfExists C# (CSharp) 메소드

ReadIfExists() 개인적인 정적인 메소드

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