Format:
Recent snippets matching tags of Bug
<!DOCTYPE html> <html> <head> <style> .boxshadow { box-shadow: 4px 4px 5px #535353; } .roundbox {
242 Views
no comments
public interface IParent { IEnumerable GetChildren(); } public interface IParent<out T> : IParent { new IEnumerable<T> GetChildren(); }
360 Views
2 comments
<system.diagnostics>
<sources>
<source name="System.ComponentModel.Composition" switchValue="Error">
<listeners>
<add name="fileListener" type="System.Diagnostics.TextWriterTraceListener" initializeData="Mef Composition.log" />
</listeners>
</source>
</sources>
<trace autoflush="true" indentsize="4" />
</system.diagnostics>
279 Views
no comments
[DebuggerDisplay("Count = {count}")]
class MyHashtable
{
public int count = 4;
}
192 Views
no comments
class Program { static void Main(string[] args) { try { var mock = new Mock<IService>(); const long iterationCount = 1000000; Parallel.For(0, iterationCount, i => mock.Object.DoWork());
328 Views
no comments
set nocount on -- build a working table called x if (object_id('x') is not null) drop table x create table x (col1 varchar(50)) declare @sql nvarchar(500) set @sql = 'insert into x select ''test'';'
374 Views
1 comments
Subscribe
Discuss
What's new
What is it
New Snippet
Recent Snippets
My Snippets
Web Code
Search
