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
Public Class Class1 | |
Private Delegate Sub AnEventHandler(Of T)(ByVal newValue As T) | |
Private Event A As AnEventHandler(Of Integer) 'Works | |
Private Event B As AnEventHandler(Of Guid) 'Works | |
Private Event C As AnEventHandler(Of Foo) 'Works | |
Private Event D As AnEventHandler(Of Bar(Of Integer)) 'Works | |
Private Event E As AnEventHandler(Of Bar(Of Guid)) 'Works | |
Private Event F As AnEventHandler(Of Bar(Of Foo)) 'Works |
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
.class interface private abstract auto ansi IBob | |
{ | |
.method public newslot abstract strict virtual | |
instance void Foo() cil managed | |
{ | |
} // end of method IBob::Foo | |
.method public newslot abstract strict virtual | |
instance void Bar() cil managed | |
{ |
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
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2"> | |
<class xmlns="urn:nhibernate-mapping-2.2" name="ConsoleApplication1.ItemBase, ConsoleApplication1" table="`ItemBase`"> | |
<id name="Id"> | |
<generator class="identity" /> | |
</id> | |
<property name="Name" /> | |
<joined-subclass name="ConsoleApplication1.Item, ConsoleApplication1"> | |
<key> | |
<column name="ItemBase_id" /> | |
</key> |
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
#!/bin/sh | |
# Create empty repository for testing | |
mkdir cherrypick | |
cd cherrypick | |
git init | |
# Simulate some initial work | |
echo bob > a.txt | |
git add a.txt |
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
// | |
// Options.cs | |
// | |
// Authors: | |
// Jonathan Pryor <[email protected]> | |
// Federico Di Gregorio <[email protected]> | |
// | |
// Copyright (C) 2008 Novell (http://www.novell.com) | |
// Copyright (C) 2009 Federico Di Gregorio. | |
// |
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
/* | |
* FullCalendar v1.5.1 Stylesheet | |
* | |
* Copyright (c) 2011 Adam Shaw | |
* Dual licensed under the MIT and GPL licenses, located in | |
* MIT-LICENSE.txt and GPL-LICENSE.txt respectively. | |
* | |
* Date: Sat Apr 9 14:09:51 2011 -0700 | |
* | |
*/ |
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
SELECT | |
os.orders_status_id, | |
os.date_added, | |
os.customer_notified, | |
os.comments, | |
o.customers_id, | |
o.customers_email_address, | |
o.orders_status, | |
o.date_purchased, | |
c.customers_id, |
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
D:. | |
\---Pyrus-2.0.0a4 | |
+---.xmlregistry | |
| \---packages | |
| \---pyrus.net | |
| \---Pyrus | |
+---data | |
| +---pear2.php.net | |
| | \---PEAR2_Console_CommandLine | |
| \---pyrus.net |
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
(gi SOURCE).Property | ?{$_ -like "Colour*"} | %{cpp SOURCE TARGET -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
<html> | |
<head> | |
<title></title> | |
<meta http-equiv="X-UA-Compatible" content="IE=8"> | |
</head> | |
<body> | |
<h1>Test</h1> | |
<pre id="testout"></pre> |