This repository has been archived on 2020-04-03. You can view files and clone it, but cannot push or open issues or pull requests.
ibz/oop/asp_textfile/asp_textfile/WriteToFile.cs

18 lines
365 B
C#

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace asp_textfile
{
public static class WriteToFile
{
public static void SaveToFile(string _input, string path)
{
File.WriteAllText(path, _input);
}
}
}