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 System.Dynamic; | |
using Microsoft.VisualStudio.TestTools.UnitTesting; | |
public class TestDataReader : DynamicObject | |
{ | |
private readonly TestContext _testContextInstance; | |
public TestDataReader(TestContext testContext) |
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.IO; | |
using System.Text; | |
using System.Xml; | |
using System.Xml.Serialization; | |
public static partial class Converter | |
{ | |
public static string ToXml<T>(this T TheObject) | |
{ | |
var Serializer = new XmlSerializer(typeof(T)); |
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 System.Collections.Generic; | |
using System.Linq.Expressions; | |
using System.Web.Mvc; | |
using System.Web.Mvc.Html; | |
public static class BootstrapHtmlHelper | |
{ | |
public static MvcHtmlString BootstrapInputFor<TModel, TProp>(this HtmlHelper<TModel> helper, Expression<Func<TModel, TProp>> expr, string name) | |
{ |
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
<?php | |
// Assuming composer's configured 'vendor' directory is APPPATH/vendor/, this configuration | |
// file will tell fuel's parser library where to find the twig resource files. | |
// Place this file inside your APPPATH/config directory. | |
return array( | |
'View_Twig' => array( | |
'include' => APPPATH.'vendor'.DS.'twig'.DS.'twig'.DS.'lib'.DS.'Twig'.DS.'Autoloader.php', |