Format:
Recent snippets for: davecowart
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Data.Linq; namespace HelpDesk.Models { public interface IGenericRepository { IQueryable<T> Get<T>() where T : class; void Insert<T>(T item) where T : class;
704 Views
no comments
<script type="text/javascript" charset="utf-8"> $(document).ready(function(){ $("a[rel^='prettyPhoto']").prettyPhoto(); }); </script>
149 Views
no comments
public class DisplayNameAttribute : Attribute { private readonly string name; public DisplayNameAttribute(string name) { this.name = name; } public override string ToString() { return name; } public static class ExtensionMethods { public static SelectList ToSelectList(this Enum enumeration, bool useSelectedValues) { var values = new Dictionary<string, string>();
415 Views
no comments
Subscribe
Discuss
What's new
What is it
New Snippet
Recent Snippets
My Snippets
Web Code
Search
