SubSonic.Extensions.WriteToFile

edit

SubSonic.Extensions.WriteToFile

Summary== Writes out a string to a file, pretty much the same as CreateToFile ==Namespace

Example=="Lorem Ipsem My Test to Save".WriteToFile(@"C:\MyFile.txt"); ==Unit Test

[Fact] public void WriteToFileShouldSaveTextToFile() { //sorry for this test "this is a stupid test".CreateToFile("C:\testfile4.txt"); //it's the only way I can think of to do it Assert.Equal("C:\testfile4.txt".GetFileText(), "this is a stupid test"); }

Comments

SubSonic 3.0 implements this as an extension on System.String - 2.x uses a static method on SubSonic.Sugar.Files.