I hereby claim:
- I am gjulianm on github.
- I am gjulianm (https://keybase.io/gjulianm) on keybase.
- I have a public key ASDDEBiC8Bx9XCZX1CrvmCO-5aQJYbyjv-tSTuV04mTODQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
test_start=50 | |
test_incr=50 | |
test_end=800 | |
jmx_file=P2-curvaProductividad.jmx | |
results_basedir=JMeters | |
jmeter_log=jmeter.out.log | |
throughput_log=throughput | |
rampup_time=10 |
using Microsoft.Phone.Controls; | |
using System; | |
using System.Windows; | |
using System.Windows.Controls; | |
using System.Windows.Controls.Primitives; | |
using System.Diagnostics; | |
using System.Collections.Generic; | |
using System.Linq; | |
namespace Ocell.Controls |
public static class Config | |
{ | |
private static readonly string SomeConfigElementKey = "MYKEY"; | |
private static string _someConfigElement; | |
public string SomeConfigElement { | |
get { | |
return GenericGetFromConfig<string>(SomeConfigElementKey, ref _someConfigElement); | |
} | |
set { |
// It will probably work in other streams. | |
public static class IsolatedFileStreamExtension | |
{ | |
public static IEnumerable<string> ReadLines(this IsolatedStorageFileStream File) | |
{ | |
char separator = char.MaxValue; | |
System.Text.UTF8Encoding encoding = new System.Text.UTF8Encoding(); | |
List<string> Strings = new List<string>(); |