Exemplo n.º 1
0
 public string ReadAssemblyFileText(string path, bool failSilently)
 {
     byte[] bytes = ReadAssemblyFileBytes(path, failSilently);
     if (bytes == null)
     {
         return(null);
     }
     return(UniversalTextDecoder.Decode(bytes));
 }
Exemplo n.º 2
0
 public string GetText(string path)
 {
     byte[] byteData;
     if (!this.data.TryGetValue(path, out byteData))
     {
         throw new System.InvalidOperationException(path + " was not available in the template set. Files: " + string.Join(", ", this.data.Keys));
     }
     return(UniversalTextDecoder.Decode(byteData));
 }
Exemplo n.º 3
0
 public static string ReadFileText(string path)
 {
     path = NormalizePath(path);
     byte[] bytes = System.IO.File.ReadAllBytes(path);
     return(UniversalTextDecoder.Decode(bytes));
 }
Exemplo n.º 4
0
 public string ReadFileText(string path)
 {
     return(UniversalTextDecoder.Decode(ReadFileBytes(path)));
 }
Exemplo n.º 5
0
 public string ReadFileString(string path)
 {
     byte[] bytes = this.ReadFileBytes(path);
     return(UniversalTextDecoder.Decode(bytes));
 }