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.Text; | |
using System.Text.RegularExpressions; | |
namespace Coderbuddy | |
{ | |
public class FileNameFromURL | |
{ | |
public string ConvertToWindowsFileName(string urlText) |
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.Text; | |
using System.Text.RegularExpressions; | |
namespace Coderbuddy | |
{ | |
public class ExtractEmail | |
{ | |
public List<string> ExtractEmails(string textToScrape) |
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
int myArray = new int[0]; | |
for (int i = 0; i < 10; i++) | |
{ | |
Array.Resize(ref myArray, myArray.Length+1); | |
myArray[myArray.Length - 1] = i; | |
} |
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
//DataType[] Array_Name=new string[Array_Length]; | |
int[] myArray=new int[10]; |
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
int myArray = new int[10]; | |
for (int i = 0; i < myArray.Length; i++) | |
{ | |
myArray[i] = i; | |
} |
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
<html> | |
<head> | |
<title> | |
Restart your PC, if you are on windows 7, 8, 8.1 | |
</title> | |
</head> | |
<body> | |
<a href='https://coderbuddy.wordpress.com/2017/05/26/mft-bug-in-windows-7-others/'>Click to read more about this</a> | |
<img src='C:\$MFT\Test.png' /> | |
</body> |
OlderNewer