Example #1
0
 /** セーブ。BOMなし。UTF8。
  *
  *      a_text							: テキスト。
  *      a_assets_path_with_extention	: 「Assets」からの相対バス。拡張子付き。
  *      a_linefeedoption				: 改行コード。
  *
  */
 public static string SaveNoBomUtf8(string a_text, string a_assets_path_with_extention, LineFeedOption a_linefeedoption)
 {
     return(SaveTextWithFullPath.SaveNoBomUtf8(a_text, AssetLib.GetApplicationDataPath() + '\\' + a_assets_path_with_extention, a_linefeedoption));
 }
Example #2
0
 /** セーブ。
  *
  *      a_text							: テキスト。
  *      a_assets_path_with_extention	: 「Assets」からの相対バス。拡張子付き。
  *      a_encoding						: エンコード。
  *      a_linefeedoption				: 改行コード。
  *
  */
 public static string Save(string a_text, string a_assets_path_with_extention, System.Text.Encoding a_encoding, LineFeedOption a_linefeedoption)
 {
     return(SaveTextWithFullPath.Save(a_text, AssetLib.GetApplicationDataPath() + '\\' + a_assets_path_with_extention, a_encoding, a_linefeedoption));
 }