- udacity.com
- teamtreehouse.com
- pluralsight.com
- codeschool.com
- codecademy.com
- pro.codecademy.com
- egghead.io
- campusmvp.es (español)
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
IEnumerable<Order> GetOrders(int userId); | |
Message GetMessage(int messageId); | |
bool ValidateCredentials(string username, string password); |
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
string SendMessage(Message message, User recipient); |
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
void Save(Order order); | |
void SendMessage(Message message, User recipient); | |
void Authenticate(string username, string password); |
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 DistanceCalculator | |
{ | |
public int CalculateDistanceInKm(string origin, string destination) | |
{ | |
if (string.IsNullOrEmpty(origin) | |
{ | |
throw new ArgumentNullException("You tried to provide a null or empty origin; please supply a valid city name"); | |
} | |
if (string.IsNullOrEmpty(destination) | |
{ |
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
# Open Source ASP.NET CMS | |
- Orchard | |
- Umbraco | |
- DotNetNuke | |
- N2CMS | |
- Karbon CMS | |
- Kooboo | |
- Composite C1 | |
- BetterCMS |
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
<input type="text" placeholder="Provincia" list="provincias"> | |
<datalist id="provincias"> | |
<option value="A Coruña"> | |
<option value="Álava"> | |
<option value="Albacete"> | |
<option value="Alicante"> | |
<option value="Almería"> | |
<option value="Asturias"> | |
<option value="Ávila"> |
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
stackoverflow.com | |
monster.com | |
dell.com | |
godaddy.com | |
britishmuseum.org | |
lego.com | |
myspace.com | |
microsoft.com | |
hotmail.com | |
msn.com |
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
private void EscribirLog(string message) | |
{ | |
try | |
{ | |
DirectoryInfo dirInfo = new DirectoryInfo(AppDomain.CurrentDomain.BaseDirectory + "\\Log"); | |
if (!dirInfo.Exists) | |
{ | |
dirInfo.Create(); | |
} | |
FileInfo[] files = dirInfo.GetFiles(); |