This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using RecipeStandardLibrary; | |
namespace ConsoleApp | |
{ | |
class Program | |
{ | |
static RefWrapper<string> stringWrapper = new RefWrapper<string>(); | |
static StringRecipeComposite recipe = | |
new StringRecipeComposite(new RefWrapper<string> { Value = "Hello World" }); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
USE [master] | |
GO | |
ALTER DATABASE [/*Database Name Goes Here*/] SET SINGLE_USER WITH ROLLBACK IMMEDIATE; | |
GO | |
DROP DATABASE [/*Database Name Goes Here*/]; | |
GO |