User Marc Gravell - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T23:53:43Zhttp://stackoverflow.com/feeds/user/23354http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1809634/bind-data-after-tcp-receive/1809903#18099030Answer by Marc Gravell for Bind Data after TCP receive.Marc Gravell2009-11-27T17:36:53Z2009-11-27T17:36:53Z<p>Re cross-thread error... simply don't try binding from the wrong thread! You'll have to switch back to the main thread for UI updates, sorry. As it happens I <em>have</em> used a cross-thread safe list in the past (for whatever meaning "safe" has when multiple threads are mutating the same list... it raises notification events on the UI thread, I mean) - but it <em>certainly</em> won't work on CF.</p>
http://stackoverflow.com/questions/1809741/c-application-closing-problem/1809756#18097567Answer by Marc Gravell for C# application closing problem.Marc Gravell2009-11-27T16:54:24Z2009-11-27T16:54:24Z<p>In the button, set a field, for example:</p>
<pre><code>bool isClosing;
private void quitToolStripMenuItem_Click(object sender, EventArgs e)
{
isClosing = true;
Close();
}
</code></pre>
<p>and check this in the "closing":</p>
<pre><code>private void Form1_FormClosing(object sender, FormClosingEventArgs e)
{
if(!isClosing) {
e.Cancel = true;
this.WindowState = FormWindowState.Minimized;
}
}
</code></pre>
http://stackoverflow.com/questions/1809500/security-in-winforms-as-it-is-webforms/1809630#18096301Answer by Marc Gravell for Security in Winforms as it is webformsMarc Gravell2009-11-27T16:27:35Z2009-11-27T16:27:35Z<p>The principal / identity model is still present, so you can use <code>Thread.CurrentPrincipal.IsInRole("myrole")</code>, or (above methods) <code>[PrincipalPermission(Role="myrole",Action= SecurityAction.Demand)]</code>, etc. In VS2008 you can hook the identity/principal directly into an ASP.NET authentication module (look for <a href="http://msdn.microsoft.com/en-us/library/bb384297.aspx" rel="nofollow">"client application services"</a>), but it is fairly easy to write your own principal too, or use windows groups.</p>
<p>The good thing about "principal" - the abstraction means the same model works everywhere; WCF, winforms, webforms, asp.net mvc, etc.</p>
http://stackoverflow.com/questions/1808636/how-do-i-delegate-an-asynccallback-method-for-control-begininvoke-net/1808661#18086610Answer by Marc Gravell for How do I delegate an AsyncCallback method for Control.BeginInvoke? (.NET)Marc Gravell2009-11-27T13:03:54Z2009-11-27T13:03:54Z<p>So you want the "extra thing" to happen on a worker thread? (else you'd just run it in th <code>RefreshRules</code> method). Perhaps just use <code>ThreadPool.QueueUserItem</code>:</p>
<pre><code>ThreadPool.QueueUserWorkItem(delegate { /* your extra stuff */ });
</code></pre>
<p>at the end of (or after) your <code>RefreshRules</code> method?</p>
<p>For info, you may find it easier/tidier to call <code>BeginInvoke</code> with an anonymous method too:</p>
<pre><code>this.BeginInvoke((MethodInvoker) delegate {
RefreshRules(ctrl, ctrl.DsRules, ctrl.CptyId);
ThreadPool.QueueUserWorkItem(delegate { /* your extra stuff */ });
});
</code></pre>
<p>this avoids creating a delegate type, and provides type-checking on your call to <code>RefreshRules</code> - note that it captures <code>ctrl</code>, though - so if you are in a loop you'll need a copy:</p>
<pre><code>var tmp = ctrl;
this.BeginInvoke((MethodInvoker) delegate {
RefreshRules(tmp, tmp.DsRules, tmp.CptyId);
ThreadPool.QueueUserWorkItem(delegate { /* your extra stuff */ });
});
</code></pre>
http://stackoverflow.com/questions/1807143/javascript-or-similar-gaming-scripts-for-c-xna/1807186#18071861Answer by Marc Gravell for Javascript (or similar) gaming scripts for C# XNAMarc Gravell2009-11-27T07:05:20Z2009-11-27T07:13:25Z<p>Would IronPython be more appropriate? That should work well on "full" framework - but it looks like it might <a href="http://www.itags.org/msdn/1830363/" rel="nofollow">not work (yet) on xbox 360</a> (which uses compact framework).</p>
<p>For an IronPython / xna example, <a href="http://paste.lisp.org/display/24997" rel="nofollow">see here</a>.</p>
http://stackoverflow.com/questions/1807087/should-i-use-ref-when-modifying-the-content-of-an-object-passed-as-a-parameter/1807101#18071015Answer by Marc Gravell for Should I use ref when modifying the content of an object passed as a parameterMarc Gravell2009-11-27T06:30:21Z2009-11-27T06:30:21Z<p>If you are only changing the <em>state</em> of the <strong>object</strong> (i.e. not reassigning the reference, but setting properties / calling methods / etc), then no: don't use <code>ref</code>.</p>
<blockquote>
<p>To me ref indicates that the function is going to change x in some way</p>
</blockquote>
<p>Indeed it does! But you <em>aren't</em> changing <code>x</code> - you are changing to object <em>referred to</em> by <code>x</code>, which is a different thing.</p>
<p>Use <code>ref</code> if:</p>
<ul>
<li>changing the reference itself (for reference-types)</li>
<li>changing the state of a value-type (yuck, should be immutable, or use the return value of the method, which may be simpler)</li>
</ul>
<p>So in short; "no". Actually, <code>ref</code> is pretty uncommon and poorly understood, which is <em>another</em> reason to minimise use of it unless necessary.</p>
http://stackoverflow.com/questions/1806493/if-i-dont-catch-exception-on-server-side-in-wcf-will-it-crash-the-server-side-ap/1807072#18070720Answer by Marc Gravell for If i dont catch exception on Server side in WCF, will it crash the server side app?Marc Gravell2009-11-27T06:19:22Z2009-11-27T06:19:22Z<p>Routine exceptions are expected; it would be better to bubble them as <strong>faults</strong> (the WCF term - look for <a href="http://msdn.microsoft.com/en-us/library/system.servicemodel.faultexception.aspx" rel="nofollow"><code>FaultException</code></a>), but either way the exception will simply get translated onto the wire and handled by the client. WCF clients <em>really</em> don't like to get exceptions, and this is usually terminal for a proxy (the client should clean up their existing proxy and spin up a new one to get a new session etc). But your server process (minus the borked session) will keep running and serving requests.</p>
<p>There are of course a category of pretty nasty and server-fatal exceptions - stack overflows, out of memory, thread-abort, etc. But there isn't much you can do about those <em>anyway</em>!</p>
http://stackoverflow.com/questions/1806856/can-i-do-this-with-an-iqueryablet/1806946#18069461Answer by Marc Gravell for Can I do this with an IQueryable<T> ?Marc Gravell2009-11-27T05:37:56Z2009-11-27T05:37:56Z<p>That is pretty evil, but the closest I can think would be to special-case the provider:</p>
<pre><code>public static class Test
{
public static IQueryable<T> IWishIKnewHowToToCode<T>(
this IQueryable<T> data, string something)
// perhaps "where T : SomeBaseTypeOrInterfaceForThePredicate"
{
switch (data.Provider.GetType().Name)
{
case "Foo": return data.Take(10);
case "Bar": return data.Where(somePredicate);
default: return data;
}
}
}
</code></pre>
<p>(obviously there are other ways to switch on <code>Type</code>).</p>
<p>Then use via fluent syntax (not query syntax):</p>
<pre><code>var result = db.Categories().IWishIKnewHowToCode("hi").ToList();
</code></pre>
http://stackoverflow.com/questions/1806089/what-is-the-reason-for-ienumerable-ienumerablet-interfaces-to-only-have-movene/1806100#180610013Answer by Marc Gravell for What is the reason for IEnumerable/IEnumerable<T> interfaces to only have MoveNext?Marc Gravell2009-11-26T23:23:53Z2009-11-26T23:23:53Z<p><code>IEnumerable[<T>]</code> represents a sequence of data, not a random-access list. Not all sequences can be reversed, or even replayed. Sequences based on network streams, database access, etc - or this beauty:</p>
<pre><code>IEnumerable<int> GetData() {
Random rand = new Random();
while(true) { yield return rand.Next(); }
}
</code></pre>
<p>The best you can do is start again - <strong>not</strong> by calling <code>Reset()</code> (which is deprecated), but by getting a fresh enumerator instead.</p>
<p>Even without <code>Random</code> it is trivial to come up with simple sequences that <strong>cannot</strong> be reversed (without buffering and reversing the buffer). For what you want, consider looking at <code>IList[<T>]</code> instead - you can access data via the indexer in <em>any</em> order.</p>
http://stackoverflow.com/questions/1805955/c-data-binding-a-single-custom-class-to-form-controls-checkbox/1805967#18059671Answer by Marc Gravell for C#: data binding a single, custom class to form controls (checkbox?)Marc Gravell2009-11-26T22:35:43Z2009-11-26T22:40:49Z<p>Two common issues:</p>
<ul>
<li>set the <code>DataSourceUpdateMode</code> to <code>OnPropertyChanged</code></li>
<li>(optional) to receive changes <em>from</em> the object, implement the <code>{name}Changed</code> event pattern or <code>INotifyPropertyChanged</code></li>
</ul>
<p>To be honest though, I'm sure most of that isn't necessary; you should just be able to say:</p>
<pre><code>myCheckbox.Bindings.Add("Checked", myEngineParameters, "avoidWeekends",
false, DataSourceUpdateMode.OnPropertyChanged);
</code></pre>
<p>Full example:</p>
<pre><code>using System;
using System.Diagnostics;
using System.Windows.Forms;
class EngineParameters {
private bool avoidWeekends;
public bool AvoidWeekends {
get { return avoidWeekends; }
set {
avoidWeekends = value;
Debug.WriteLine("AvoidWeekends => " + value);
}
}
}
static class Program {
[STAThread]
static void Main() {
Application.EnableVisualStyles();
using(Form form = new Form())
using (CheckBox myCheckbox = new CheckBox()) {
EngineParameters myEngineParameters = new EngineParameters();
myEngineParameters.AvoidWeekends = true;
form.Controls.Add(myCheckbox);
myCheckbox.DataBindings.Add("Checked", myEngineParameters, "AvoidWeekends",
false, DataSourceUpdateMode.OnPropertyChanged);
Application.Run(form);
}
}
}
</code></pre>
http://stackoverflow.com/questions/1804859/c-how-to-deserialize-a-generic-listt-when-i-dont-know-the-type-of-t/1804904#18049041Answer by Marc Gravell for c# - How to deserialize a generic list<T> when I don't know the type of (T)?Marc Gravell2009-11-26T17:31:07Z2009-11-26T21:28:36Z<p>With <code>BinaryFormatter</code> you don't <strong>need</strong> to know the type; the metadata is included in the stream (making it bigger, but hey!). However, you can't <em>cast</em> unless you know the type. Often in this scenario you have to use common known interfaces (non-generic <code>IList</code> etc) and reflection. And lots of it.</p>
<p>I also can't think of a huge requirement to know the type to show in a <code>PropertyGrid</code> - since this accepts <code>object</code>, just give it what <code>BinaryFormatter</code> provides. Is there a specific issue you are seeing there? Again, you might want to check for <code>IList</code> (non-generic) - but it isn't worth worrying about <code>IList<T></code>, since this isn't what <code>PropertyGrid</code> checks for!</p>
<p>You can of course find the <code>T</code> if you <em>want</em> (<a href="http://stackoverflow.com/questions/755200/how-do-i-detect-that-an-object-is-a-generic-collection-and-what-types-it-contain/755313#755313">like so</a>) - and use <code>MakeGenericType()</code> and <code>Activator.CreateInstance</code> - not pretty.</p>
<p><hr></p>
<p>OK; here's a way using custom descriptors that <strong>doesn't</strong> involve knowing <em>anything</em> about the object or the list type; if you <strong>really</strong> want it is possible to expand the list items directly into the properties, so in this example you'd see 2 fake properties ("Fred" and "Wilma") - that is extra work, though ;-p</p>
<pre><code>using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Windows.Forms;
class Person
{
public string Name { get; set; }
public DateTime DateOfBirth { get; set; }
public override string ToString() {
return Name;
}
}
static class Program
{
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Person fred = new Person();
fred.Name = "Fred";
fred.DateOfBirth = DateTime.Today.AddYears(-23);
Person wilma = new Person();
wilma.Name = "Wilma";
wilma.DateOfBirth = DateTime.Today.AddYears(-20);
ShowUnknownObject(fred, "Single object");
List<Person> list = new List<Person>();
list.Add(fred);
list.Add(wilma);
ShowUnknownObject(list, "List");
}
static void ShowUnknownObject(object obj, string caption)
{
using(Form form = new Form())
using (PropertyGrid grid = new PropertyGrid())
{
form.Text = caption;
grid.Dock = DockStyle.Fill;
form.Controls.Add(grid);
grid.SelectedObject = ListWrapper.Wrap(obj);
Application.Run(form);
}
}
}
[TypeConverter(typeof(ListWrapperConverter))]
public class ListWrapper
{
public static object Wrap(object obj)
{
IListSource ls = obj as IListSource;
if (ls != null) obj = ls.GetList(); // list expansions
IList list = obj as IList;
return list == null ? obj : new ListWrapper(list);
}
private readonly IList list;
private ListWrapper(IList list)
{
if (list == null) throw new ArgumentNullException("list");
this.list = list;
}
internal class ListWrapperConverter : TypeConverter
{
public override bool GetPropertiesSupported(ITypeDescriptorContext context)
{
return true;
}
public override PropertyDescriptorCollection GetProperties(
ITypeDescriptorContext context, object value, Attribute[] attributes) {
return new PropertyDescriptorCollection(
new PropertyDescriptor[] { new ListWrapperDescriptor(value as ListWrapper) });
}
}
internal class ListWrapperDescriptor : PropertyDescriptor {
private readonly ListWrapper wrapper;
internal ListWrapperDescriptor(ListWrapper wrapper) : base("Wrapper", null)
{
if (wrapper == null) throw new ArgumentNullException("wrapper");
this.wrapper = wrapper;
}
public override bool ShouldSerializeValue(object component) { return false; }
public override void ResetValue(object component) {
throw new NotSupportedException();
}
public override bool CanResetValue(object component) { return false; }
public override bool IsReadOnly {get {return true;}}
public override void SetValue(object component, object value) {
throw new NotSupportedException();
}
public override object GetValue(object component) {
return ((ListWrapper)component).list;
}
public override Type ComponentType {
get { return typeof(ListWrapper); }
}
public override Type PropertyType {
get { return wrapper.list.GetType(); }
}
public override string DisplayName {
get {
IList list = wrapper.list;
if (list.Count == 0) return "Empty list";
return "List of " + list.Count
+ " " + list[0].GetType().Name;
}
}
}
}
</code></pre>
http://stackoverflow.com/questions/1805475/checking-an-xelement-for-existence-of-one-of-several-possible-xelements/1805493#18054932Answer by Marc Gravell for Checking an XElement for Existence of One of Several Possible XElementsMarc Gravell2009-11-26T20:21:13Z2009-11-26T20:27:11Z<p>If I understand correctly - perhaps (using C#, sorry - but no real C# specific logic here):</p>
<pre><code>var colors = new[] {"red", "green","blue"};
bool any = el.Descendants().Any(child => colors.Contains(child.Name.LocalName));
</code></pre>
<p>Even if the VB fights you, I'm sure you can use <code>.Any</code> instead of <code>.SingleOrDefault</code> and a <code>null</code> check.</p>
<p>For info, using <strong>elements</strong> here to me sounds like an odd idea; I'd just have the color name as the <em>text</em> if possible:</p>
<pre><code><somexml><color>blue</color></somexml>
</code></pre>
<p>or even as an attribute:</p>
<pre><code><somexml color="blue"/>
</code></pre>
http://stackoverflow.com/questions/1804659/c-extend-array-type-to-overload-operators/1804841#18048412Answer by Marc Gravell for C# Extend array type to overload operatorsMarc Gravell2009-11-26T17:12:36Z2009-11-26T17:22:49Z<p>For a single type, it is pretty easy to encapsulate, as below. Note that as a key you want to make it immutable too. If you want to use generics, it gets harder (ask for more info):</p>
<pre><code>using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
static class Program {
static void Main() {
MyVector x = new MyVector(1, 2, 3), y = new MyVector(1, 2, 3),
z = new MyVector(4,5,6);
Console.WriteLine(x == y); // true
Console.WriteLine(x == z); // false
Console.WriteLine(object.Equals(x, y)); // true
Console.WriteLine(object.Equals(x, z)); // false
var comparer = EqualityComparer<MyVector>.Default;
Console.WriteLine(comparer.GetHashCode(x)); // should match y
Console.WriteLine(comparer.GetHashCode(y)); // should match x
Console.WriteLine(comparer.GetHashCode(z)); // *probably* different
Console.WriteLine(comparer.Equals(x,y)); // true
Console.WriteLine(comparer.Equals(x,z)); // false
MyVector sum = x + z;
Console.WriteLine(sum);
}
}
public sealed class MyVector : IEquatable<MyVector>, IEnumerable<int> {
private readonly int[] data;
public int this[int index] {
get { return data[index]; }
}
public MyVector(params int[] data) {
if (data == null) throw new ArgumentNullException("data");
this.data = (int[])data.Clone();
}
private int? hash;
public override int GetHashCode() {
if (hash == null) {
int result = 13;
for (int i = 0; i < data.Length; i++) {
result = (result * 7) + data[i];
}
hash = result;
}
return hash.GetValueOrDefault();
}
public int Length { get { return data.Length; } }
public IEnumerator<int> GetEnumerator() {
for (int i = 0; i < data.Length; i++) {
yield return data[i];
}
}
IEnumerator IEnumerable.GetEnumerator() {
return GetEnumerator();
}
public override bool Equals(object obj)
{
return this == (obj as MyVector);
}
public bool Equals(MyVector obj) {
return this == obj;
}
public override string ToString() {
StringBuilder sb = new StringBuilder("[");
if (data.Length > 0) sb.Append(data[0]);
for (int i = 1; i < data.Length; i++) {
sb.Append(',').Append(data[i]);
}
sb.Append(']');
return sb.ToString();
}
public static bool operator ==(MyVector x, MyVector y) {
if(ReferenceEquals(x,y)) return true;
if(ReferenceEquals(x,null) || ReferenceEquals(y,null)) return false;
if (x.hash.HasValue && y.hash.HasValue && // exploit known different hash
x.hash.GetValueOrDefault() != y.hash.GetValueOrDefault()) return false;
int[] xdata = x.data, ydata = y.data;
if(xdata.Length != ydata.Length) return false;
for(int i = 0 ; i < xdata.Length ; i++) {
if(xdata[i] != ydata[i]) return false;
}
return true;
}
public static bool operator != (MyVector x, MyVector y) {
return !(x==y);
}
public static MyVector operator +(MyVector x, MyVector y) {
if(x==null || y == null) throw new ArgumentNullException();
int[] xdata = x.data, ydata = y.data;
if(xdata.Length != ydata.Length) throw new InvalidOperationException("Length mismatch");
int[] result = new int[xdata.Length];
for(int i = 0 ; i < xdata.Length ; i++) {
result[i] = xdata[i] + ydata[i];
}
return new MyVector(result);
}
}
</code></pre>
http://stackoverflow.com/questions/1804341/reflection-emit-better-than-getvalue-setvalue-s/1804701#18047011Answer by Marc Gravell for Reflection.Emit better than GetValue & SetValue :SMarc Gravell2009-11-26T16:40:17Z2009-11-26T16:40:17Z<p>Just an alternative answer; if you want the performance, but a similar API - consider <a href="http://www.codeproject.com/KB/cs/HyperPropertyDescriptor.aspx" rel="nofollow">HyperDescriptor</a>; this uses <code>Reflection.Emit</code> underneath (so you don't have to), but exposes itself on the <code>PropertyDescriptor</code> API, so you can just use:</p>
<pre><code>PropertyDescriptorCollection props = TypeDescriptor.GetProperties(obj);
props["Name"].SetValue(obj, "Fred");
DateTime dob = (DateTime)props["DateOfBirth"].GetValue(obj);
</code></pre>
<p>One line of code to enable it, and it handles all the caching etc.</p>
http://stackoverflow.com/questions/1804433/issue-with-c-net-binaryreader-readchars/1804660#18046600Answer by Marc Gravell for Issue with C#/.NET BinaryReader.ReadChars()Marc Gravell2009-11-26T16:34:05Z2009-11-26T16:34:05Z<p>Interesting; you could report this on "connect". As a stop-gap, you could also try wrapping with <a href="http://msdn.microsoft.com/en-us/library/system.io.bufferedstream.aspx" rel="nofollow"><code>BufferredStream</code></a>, but I expect this is papering over a crack (it may still happen, but less frequently).</p>
<p>The other approach, of course, is to pre-buffer an entire message (but not the entire stream); then read from something like <code>MemoryStream</code> - assuming your network protocol <em>has</em> logical (and ideally length-prefixed, and not too big) messages. Then when it is <em>decoding</em> all the data is available.</p>
http://stackoverflow.com/questions/253138/anonymous-method-in-invoke-call/253150#25315011Answer by Marc Gravell for Anonymous method in Invoke callMarc Gravell2008-10-31T10:56:33Z2009-11-26T16:25:53Z<p>Because <code>Invoke</code>/<code>BeginInvoke</code> accepts <code>Delegate</code> (rather than a typed delegate), you need to tell the compiler what type of delegate to create ; <code>MethodInvoker</code> (2.0) or <code>Action</code> (3.5) are common choices (note they have the same signature); like so:</p>
<pre><code>control.Invoke((MethodInvoker) delegate {this.Text = "Hi";});
</code></pre>
<p>If you need to pass in parameters, then "captured variables" are the way:</p>
<pre><code>string message = "Hi";
control.Invoke((MethodInvoker) delegate {this.Text = message;});
</code></pre>
<p>(caveat: you need to be a bit cautious if using captures <em>async</em>, but <em>sync</em> is fine - i.e. the above is fine)</p>
<p>Another option is to write an extension method:</p>
<pre><code>public static void Invoke(this Control control, Action action)
{
control.Invoke((Delegate)action);
}
</code></pre>
<p>then:</p>
<pre><code>this.Invoke(delegate { this.Text = "hi"; });
// or simce we are using C# 3.0
this.Invoke(() => { this.Text = "hi"; });
</code></pre>
<p>You can of course do the same with <code>BeginInvoke</code>:</p>
<pre><code>public static void BeginInvoke(this Control control, Action action)
{
control.BeginInvoke((Delegate)action);
}
</code></pre>
<p>If you can't use C# 3.0, you could do the same with a regular instance method, presumably in a <code>Form</code> base-class.</p>
http://stackoverflow.com/questions/1803455/net-datetime-object-string-format/1803488#18034882Answer by Marc Gravell for .NET DateTime object string formatMarc Gravell2009-11-26T12:46:34Z2009-11-26T12:46:34Z<p>I'd be interested in seeing the code where you get the date out of the command/reader/adapter - if the database column is typed as a <code>datetime</code>, then what comes over the wire <strong>isn't</strong> actually "2009/10/01" - it is a binary number (like most dates are on the wire). As such there is no ambiguity.</p>
<p>I expect that <em>somewhere</em> you are treating it as a string (perhaps some <code>Parse</code>) - this shouldn't be necessary. If it is, you aren't <code>SELECT</code>ing it as a <code>datetime</code>, but as a <code>[n][var]char(x)</code>.</p>
http://stackoverflow.com/questions/1802003/parsing-peculiar-newlines/1802040#18020402Answer by Marc Gravell for Parsing Peculiar NewlinesMarc Gravell2009-11-26T07:19:07Z2009-11-26T07:46:56Z<p>Hmmm... 0x0D000D0A?</p>
<p>Your line endings indeed look borked. You might have to parse it more manually via a Stream... I would have expected 0x0D000A000? (since this is little-endian). I wonder if a non-Unicode process has done a "replace lf with crlf" sweep and mucked it up. You could of course do the same, and (processing bytes in blocks of two) replace 0D0A with 0A00 (starting on even bytes only). But starting with non-corrupt data is always a better option...</p>
<p><hr></p>
<p>was:</p>
<p>0xFFFE is a BOM, so anything involving <code>StreamReader</code> etc (such as <code>File.OpenText</code>) should handle this automatically and choose the right encoding. If not, give it a clue:</p>
<pre><code>using(var reader = new StreamReader(path, Encoding.Unicode)) {
...
}
</code></pre>
http://stackoverflow.com/questions/1801905/how-to-fetch-data-from-nested-dictionary-in-c/1801942#18019422Answer by Marc Gravell for how to fetch data from nested Dictionary in c#Marc Gravell2009-11-26T06:47:50Z2009-11-26T07:00:50Z<p>A LINQ answer (that reads all the triples):</p>
<pre><code>var qry = from outer in allOffset
from inner in outer.Value
select new {OuterKey = outer.Key,InnerKey = inner.Key,inner.Value};
</code></pre>
<p>or (to get the string directly):</p>
<pre><code>var qry = from outer in allOffset
from inner in outer.Value
select outer.Key + "->>" + inner.Key + ", " + inner.Value;
foreach(string s in qry) { // show them
Console.WriteLine(s);
}
</code></pre>
http://stackoverflow.com/questions/1801822/consuming-wcf-service-for-development-in-advance/1801849#18018492Answer by Marc Gravell for Consuming WCF service for development in advance?Marc Gravell2009-11-26T06:19:30Z2009-11-26T06:19:30Z<p>It depends in part on how your are configuring WCF; one option is to use assembly sharing (rather than mex-generated proxies) - in which case you <strong>already have</strong> your service contract: it is just the interface (and DTO classes) in the paired dll. From this you can mock away to your hearts content, and changing to the <em>real</em> service is simply a case of configuring your app.config/web.config and switching your IoC/DI layer to use WCF (not hard, but "how" depends on your choice of IoC/DI).</p>
http://stackoverflow.com/questions/1800554/chopping-doubles-in-c/1800560#18005608Answer by Marc Gravell for Chopping Doubles in C#Marc Gravell2009-11-25T23:03:31Z2009-11-25T23:03:31Z<pre><code>Math.Truncate
</code></pre>
<p>?</p>
http://stackoverflow.com/questions/1797849/deserialize-xml-into-classes-that-extends-collection/1798322#17983221Answer by Marc Gravell for deserialize XML into classes that extends collection Marc Gravell2009-11-25T16:53:11Z2009-11-25T17:12:01Z<p>What harm is it doing? </p>
<p>Personally, I'd leave it as is; it does what it says, and is simple to understand. That, to me, is elegant. You can also add properties at the top level later (you can't do this if it is <em>itself</em> a list).</p>
http://stackoverflow.com/questions/1798085/linq-transform-memberexpression-type-to-not-nullable/1798211#17982114Answer by Marc Gravell for Linq: transform memberExpression type to not nullableMarc Gravell2009-11-25T16:36:24Z2009-11-25T16:36:24Z<p>You can use <code>Nullable.GetUnderlyingType</code> to check (more simply) for <code>Nullable<T></code>, and just use <code>GetValueOrDefault</code> - like below (I've only included the <code>Func<Foo,int></code> etc as demo):</p>
<pre><code>using System;
using System.Linq.Expressions;
class Foo {
public int? Bar { get; set; }
static void Main() {
var param = Expression.Parameter(typeof(Foo), "foo");
Expression member = Expression.PropertyOrField(param, "Bar");
Type typeIfNullable = Nullable.GetUnderlyingType(member.Type);
if (typeIfNullable != null) {
member = Expression.Call(member,"GetValueOrDefault",Type.EmptyTypes);
}
var body = Expression.Lambda<Func<Foo, int>>(member, param);
var func = body.Compile();
int result1 = func(new Foo { Bar = 123 }),
result2 = func(new Foo { Bar = null });
}
}
</code></pre>
http://stackoverflow.com/questions/1796626/how-enum-is-used-in-net/1796650#17966504Answer by Marc Gravell for how enum is used in .NETMarc Gravell2009-11-25T12:36:50Z2009-11-25T12:36:50Z<p>Enums are really just integers - (typically <code>int</code>) - and are compared exactly as such. If you have:</p>
<pre><code>enum Mwahaha {
Evil = 1, Nasty = 1
}
</code></pre>
<p>Then you'll find that <code>Mwahaha.Evil == Mwahaha.Nasty</code>. The only times the names matter are:</p>
<ul>
<li>in your code</li>
<li>when using <code>Enum.Parse</code> (etc)</li>
<li>when displaying it via <code>ToString()</code> etc (I suspect it is undefined whether <code>Evil</code> or <code>Nasty</code> is displayed above)</li>
<li>when using things like xml serialization (similar to the above)</li>
</ul>
http://stackoverflow.com/questions/194484/whats-the-strangest-corner-case-youve-seen-in-c-or-net/194671#194671128Answer by Marc Gravell for What's the strangest corner case you've seen in C# or .NET?Marc Gravell2008-10-11T21:25:23Z2009-11-25T12:03:59Z<p>I think I showed you this one before, but I like the fun here - this took some debugging to track down! (the original code was obviously more complex and subtle...)</p>
<pre><code> static void Foo<T>() where T : new()
{
T t = new T();
Console.WriteLine(t.ToString()); // works fine
Console.WriteLine(t.GetHashCode()); // works fine
Console.WriteLine(t.Equals(t)); // works fine
// so it looks like an object and smells like an object...
// but this throws a NullReferenceException...
Console.WriteLine(t.GetType());
}
</code></pre>
<p>So what was T...</p>
<p>Answer: any <code>Nullable<T></code> - such as <code>int?</code>. All the methods are overridden, except GetType() which can't be; so it is cast (boxed) to object (and hence to null) to call object.GetType()... which calls on null ;-p</p>
<p><hr></p>
<p>Update: the plot thickens... Ayende Rahien threw down a <a href="http://ayende.com/Blog/archive/2009/11/25/can-you-hack-this-out-hint-1.aspx" rel="nofollow">similar challenge on his blog</a>, but with a <code>where T : class, new()</code>:</p>
<pre><code>private static void Main() {
CanThisHappen<MyFunnyType>();
}
public static void CanThisHappen<T>() where T : class, new() {
var instance = new T(); // new() on a ref-type; should be non-null, then
Debug.Assert(instance != null, "How did we break the CLR?");
}
</code></pre>
<p>But it can be defeated! Using the same indirection used by things like remoting; warning - the following is <strong>pure evil</strong>:</p>
<pre><code>class MyFunnyProxyAttribute : ProxyAttribute {
public override MarshalByRefObject CreateInstance(Type serverType) {
return null;
}
}
[MyFunnyProxy]
class MyFunnyType : ContextBoundObject { }
</code></pre>
<p>With this in place, the <code>new()</code> call is redirected to the proxy (<code>MyFunnyProxyAttribute</code>), which returns <code>null</code>. Now go and wash your eyes!</p>
http://stackoverflow.com/questions/1794978/how-to-detect-the-parsing-time-in-xslt-transformation-using-c-code/1794989#17949894Answer by Marc Gravell for How to detect the "parsing time" in XSLT transformation using C# code?Marc Gravell2009-11-25T06:13:45Z2009-11-25T06:52:05Z<p>I'm not sure I understand fully, but perhaps simply:</p>
<pre><code>Stopwatch watch = Stopwatch.StartNew();
// where "xslt" is your prepared XslTransform or XslCompiledTransform
xslt.Transform(input, args, results);
watch.Stop();
TimeSpan elapsed = watch.Elapsed; // how long
</code></pre>
<p>If you want the elapsed time in seconds and milliseconds:</p>
<pre><code>string seconds = elapsed.TotalSeconds.ToString("0.000");
</code></pre>
<p><hr></p>
<p>If you want separate timings for parse vs transform:</p>
<pre><code>Stopwatch watch = Stopwatch.StartNew();
XPathDocument sourceDoc = new XPathDocument(location);
watch.Stop();
TimeSpan parseTime = watch.Elapsed;
watch.Reset();
watch.Start();
xslt.Transform(sourceDoc, args, results);
watch.Stop();
TimeSpan transformTime = watch.Elapsed;
</code></pre>
http://stackoverflow.com/questions/1795028/c-2005-console-application-always-requires-elevated-privileges/1795044#17950443Answer by Marc Gravell for C# 2005 console application always requires elevated privilegesMarc Gravell2009-11-25T06:33:54Z2009-11-25T06:33:54Z<p>Firstly, I would <a href="http://www.microsoft.com/express/vcsharp/" rel="nofollow">update to 2008 Express</a>; 2005 Express is no longer available for download, but 2008 Express can still target .NET 2.0, in addition to giving you 3.0/3.5 goodness. And it is still free. Actually, 2010 Express is just around the corner! In particular, you'll find it increasingly hard to find people who can answer 2005 Express <strong>IDE-specific</strong> issues, simply because few people have 2005 Express still installed. </p>
<p><hr></p>
<p>Add an application manifest file (via the IDE) - it will appear as app.manifest; it should add (by default):</p>
<pre><code><requestedExecutionLevel level="asInvoker" uiAccess="false" />
</code></pre>
<p>Which should (IIRC) help - but a: where is the app running from, and b: what does it do? (does it try to edit the registry, etc).</p>
http://stackoverflow.com/questions/718003/reflection-emit-access-topmost-but-one-item-from-stack4Reflection.Emit - access topmost-but-one item from stackMarc Gravell2009-04-04T23:07:47Z2009-11-25T04:24:19Z
<p>Is there a way in .NET, using <code>Reflection.Emit</code>, to access the topmost-but-one item from the stack? So if A is topmost, and B next - I want to process B then A. It would be fine to duplicate B <em>above</em> A (since I can simply "pop" the second B when I get to it).</p>
<p>Currently, I am declaring a local:</p>
<pre><code> LocalBuilder loc = il.DeclareLocal(typeof(Foo));
il.Emit(OpCodes.Stloc, loc); // store and pop topmost stack item
// work with (pop) previous stack item
il.Emit(OpCodes.Ldloc, loc); // push old topmost stack item
</code></pre>
<p>Is there a route that doesn't need the explicit local?</p>
http://stackoverflow.com/questions/1792656/should-nulls-be-handled-in-code-or-in-the-database-advantages-and-disadvantages/1792692#17926922Answer by Marc Gravell for Should NULLS be handled in code or in the database? Advantages and Disadvantages?Marc Gravell2009-11-24T20:25:11Z2009-11-24T20:25:11Z<p>The main advantage is that you can handle null and empty strings separately in both the .NET and SQL code - they can, after all, mean different things.</p>
<p>The downside is you need to be careful; in .NET you have to not call obj.SomeMethod() on null, and in SQL you need to watch that nulls tend to propagate when combined (unlike, for example, C# string concatenation).</p>
<p>There isn't really a noticeable size difference between null and empty. In the .NET code I'd <em>hope</em> that it uses the interned empty string, but it isn't going to matter hugely.</p>
http://stackoverflow.com/questions/1792264/what-happens-when-object-running-thread-a-is-destroyed-by-thread-b/1792606#17926062Answer by Marc Gravell for What happens when object running thread A is destroyed by thread B?Marc Gravell2009-11-24T20:08:31Z2009-11-24T20:08:31Z<p>At the start, you have:</p>
<pre><code>Thread1: [A1] -----field ----> [B1]
<--- event -----
</code></pre>
<p>You create a new thread, running a loop on B1; the key here is that delegates and instance methods (during use) <strong>themselves</strong> have a reference to the instance (it is "arg0" in IL terms); so you have:</p>
<pre><code>Thread1: [A1] ---- field ----> [B1]
<--- event ----- ^
Thread2: ------------------------^
</code></pre>
<p>You then unhook the event and cancel the field:</p>
<pre><code>Thread1: [A1] ---- field ----> [nil]
Thread2: --------------------> [B1]
</code></pre>
<p>And recreate and rehook against a different instance:</p>
<pre><code>Thread1: [A1] ---- field ----> [B2]
<--- event -----
Thread2: --------------------> [B1]
</code></pre>
<p>So: your thread continues processing against [B1], but no longer impacts [A1]</p>
http://stackoverflow.com/questions/1809569/reflectively-determining-if-a-member-type-is-a-number-in-cComment by Marc Gravell on Reflectively determining if a member type is a number in C#Marc Gravell2009-11-27T17:37:35Z2009-11-27T17:37:35ZSo why do you need to know if it is a number? Just use <code>TypeDescriptor.GetConverter(value)</code>http://stackoverflow.com/questions/1809741/c-application-closing-problem/1809748#1809748Comment by Marc Gravell on C# application closing problem.Marc Gravell2009-11-27T16:56:10Z2009-11-27T16:56:10ZBesides, it is better to exit cleanly...http://stackoverflow.com/questions/1809634/bind-data-after-tcp-receiveComment by Marc Gravell on Bind Data after TCP receive.Marc Gravell2009-11-27T16:50:12Z2009-11-27T16:50:12ZIs there any more detail in the exception? a string message? And does the same data-binding approach work in regular / winforms?http://stackoverflow.com/questions/1805589/expected-compile-error-in-vb6-while-adding-recordset-to-sql-server-2005-databComment by Marc Gravell on "Expected:=" compile error in vb6 while adding recordset to SQL Server 2005 databaseMarc Gravell2009-11-27T16:39:44Z2009-11-27T16:39:44ZThe "flag for moderator attention" feature is for admin purposes only, not for getting answers.http://stackoverflow.com/questions/1809569/reflectively-determining-if-a-member-type-is-a-number-in-cComment by Marc Gravell on Reflectively determining if a member type is a number in C#Marc Gravell2009-11-27T16:24:34Z2009-11-27T16:24:34Zbtw - what will you do when you know it is a number?http://stackoverflow.com/questions/1807379/does-a-capital-decimal-use-more-memory-as-a-lowercase-decimal/1807386#1807386Comment by Marc Gravell on Does a capital Decimal use more memory as a lowercase decimalMarc Gravell2009-11-27T12:50:58Z2009-11-27T12:50:58ZWith all due respect, it isn't "silly" - it is a perfectly valid question, especially if you come from a java background where the difference is boxed vs unboxed - i.e. a big difference. It <b>happens</b> that in C# they are the same.http://stackoverflow.com/questions/1807311/linq-to-sql-generic-class-for-insert-and-delete-operationComment by Marc Gravell on LINQ to SQL Generic Class for Insert and Delete operationMarc Gravell2009-11-27T08:01:55Z2009-11-27T08:01:55ZHave you considered keeping the C# version in a dll and simply referencing it from your VB?http://stackoverflow.com/questions/1807237/best-approach-to-handle-user-rights-in-desktop-applicationsComment by Marc Gravell on Best Approach to Handle User Rights in Desktop ApplicationsMarc Gravell2009-11-27T07:38:49Z2009-11-27T07:38:49ZBarely an answer (hence comment) - but by using the principal/identity model and IsInRole? Next job: write your principal/identity layer!http://stackoverflow.com/questions/1804341/reflection-emit-better-than-getvalue-setvalue-s/1804701#1804701Comment by Marc Gravell on Reflection.Emit better than GetValue & SetValue :SMarc Gravell2009-11-27T07:37:26Z2009-11-27T07:37:26ZIt is confusing, I agree; the same code works fine with/without HyperDescriptor, but it is /much/ (~100x) slower without. Any problems getting it working, let me know (it was a few years ago when I wrote it, but I still remember most of it!)http://stackoverflow.com/questions/1804341/reflection-emit-better-than-getvalue-setvalue-sComment by Marc Gravell on Reflection.Emit better than GetValue & SetValue :SMarc Gravell2009-11-27T07:36:16Z2009-11-27T07:36:16Z(replied to comment)http://stackoverflow.com/questions/1804341/reflection-emit-better-than-getvalue-setvalue-s/1804701#1804701Comment by Marc Gravell on Reflection.Emit better than GetValue & SetValue :SMarc Gravell2009-11-27T07:35:44Z2009-11-27T07:35:44ZI mean you need to download the HyperDescriptor component from codeproject and enable it as shown in the page (several different ways). <i>Without</i> HyperDescriptor this is jut glorified reflection; HyperDescriptor intercepts TypeDescriptor and replaces the reflection code with dynamic IL.http://stackoverflow.com/questions/1807087/should-i-use-ref-when-modifying-the-content-of-an-object-passed-as-a-parameter/1807099#1807099Comment by Marc Gravell on Should I use ref when modifying the content of an object passed as a parameterMarc Gravell2009-11-27T06:34:35Z2009-11-27T06:34:35Zs/instantiate/reassign, but I agree.http://stackoverflow.com/questions/1806856/can-i-do-this-with-an-iqueryablet/1806946#1806946Comment by Marc Gravell on Can I do this with an IQueryable<T> ?Marc Gravell2009-11-27T06:11:31Z2009-11-27T06:11:31ZI don't think either is possible (in a generic way). LINQ-to-SQL allows you to issue custom TSQL, but not as part of an <code>Expression</code>. EF allows you to issue custom ESQL (a different syntax), and again not AFAIK as part of an <code>Expression</code>.http://stackoverflow.com/questions/1806181/why-should-i-convert-a-string-to-upper-case-when-comparing/1806227#1806227Comment by Marc Gravell on Why should I convert a string to upper case when comparing?Marc Gravell2009-11-27T00:23:05Z2009-11-27T00:23:05ZNow try that with with I in turkish...http://stackoverflow.com/questions/1806181/why-should-i-convert-a-string-to-upper-case-when-comparing/1806234#1806234Comment by Marc Gravell on Why should I convert a string to upper case when comparing?Marc Gravell2009-11-27T00:22:13Z2009-11-27T00:22:13ZFor example: turkish i ;-p