This file contains hidden or 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
kernel.Bind( | |
x => x.FromThisAssembly() | |
.SelectAllClasses().InheritedFrom<IGenre>() | |
.BindAllInterfaces() | |
); | |
public class TestController | |
{ | |
public TestController(IEnumerable<IGenre> gernes) |
This file contains hidden or 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.Web.Mvc; | |
using UI.Web.Cultures; | |
using UI.Web.Localization; | |
namespace UI.Web.Views | |
{ | |
/// <summary> | |
/// Custom web view page | |
/// Adds CultureService, LocalizationService and Localize to the views | |
/// </summary> |
This file contains hidden or 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" | |
"http://www.w3.org/TR/html4/loose.dtd"> | |
<html> | |
<head> | |
<title></title> | |
<script type="text/javascript" src="http://code.jquery.com/jquery-1.9.0.min.js"></script> | |
<script type="text/javascript"> | |
(function(window, $) { | |
var defaults = { |
This file contains hidden or 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
(function(global, $) | |
"use strict"; | |
var something = function() { | |
}; | |
window.something = something; |
This file contains hidden or 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.Diagnostics.CodeAnalysis; | |
using System.Dynamic; | |
using System.Linq; | |
using System.Linq.Expressions; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace ConsoleApplication5 |
This file contains hidden or 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
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
var value = GetObject(); | |
if (value is bool?) | |
{ | |
Console.WriteLine("true"); | |
} |
This file contains hidden or 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
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
var store = new EmbeddableDocumentStore | |
{ | |
DataDirectory = "Data" | |
}; | |
store.Initialize(); |
This file contains hidden or 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.Linq.Expressions; | |
using NUnit.Framework; | |
namespace ClassLibrary1 | |
{ | |
[TestFixture] | |
public class Class2 | |
{ | |
[Test] |
This file contains hidden or 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
public class User : IPrincipal | |
{ | |
public User(string username, IEnumerable<string> roles) | |
{ | |
Username = username; | |
Roles = roles; | |
} | |
public string Username { get; private set; } | |
public IEnumerable<string> Roles { get; private set; } |
This file contains hidden or 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
public class ActionRunner | |
{ | |
public void Run(Action action) | |
{ | |
action(); | |
} | |
} | |
ActionRunner.Run( | |
async () => |
OlderNewer