I hereby claim:
- I am beobab on github.
- I am toolan (https://keybase.io/toolan) on keybase.
- I have a public key ASDAL6BNZqQF9Fzh9JKP9jXKPwUh5I5ATq3hXgf6J8mvyQo
To claim this, I am signing this object:
let a: Array<Character> = ["A","B","C","D","E","F"]; | |
let x = allCombos(a: a); | |
for y in x { | |
print (y); | |
} | |
// Gets all the combinations which start with the first item in the array. | |
func firstItemCombo(a: Array<Any>) -> Array<Array<Any>> { | |
var lst: Array<Array<Any>> = []; |
I hereby claim:
To claim this, I am signing this object:
private void button1_Click(object sender, EventArgs e) | |
{ | |
var fi = new FileInfo(txtFile.Text); | |
if (!fi.Exists) return; | |
var sb = new StringBuilder(); | |
var lines = File.ReadAllLines(fi.FullName); | |
// repeatedly: | |
string msgid = null; |
public static class DBExtensions | |
{ | |
public static string ToText(this SqlCommand cmd) { return cmd.ToText(true); } | |
public static string ToText(this SqlCommand cmd, bool includeParameters) | |
{ | |
var sb = new StringBuilder(); | |
try | |
{ | |
if (cmd != null) | |
{ |