User Sander - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T22:36:08Zhttp://stackoverflow.com/feeds/user/2928http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1852055/is-there-any-workaround-for-the-updatepanel-server-transfer-problem1Is there any workaround for the UpdatePanel + Server.Transfer problem?Sander2009-12-05T12:09:39Z2009-12-05T12:24:31Z
<p>I'm trying to use an UpdatePanel in my ASP.NET application. Unfortunately, it seems that I can't do this <a href="http://msmvps.com/blogs/luisabreu/archive/2007/10/10/no-you-cannot-call-server-transfer-on-an-asp-net-ajax-enabled-page.aspx" rel="nofollow">if I am using Server.Transfer() in my application</a>.</p>
<p>Modifying that component of the application is not possible - the architecture makes extensive use of Server.Transfer() - in essence, every page request goes through this method. Does any workaround exist for this issue exist? Having to do full-page postbacks is so unfashionable these days...</p>
http://stackoverflow.com/questions/1852055/is-there-any-workaround-for-the-updatepanel-server-transfer-problem/1852080#18520801Answer by Sander for Is there any workaround for the UpdatePanel + Server.Transfer problem?Sander2009-12-05T12:24:31Z2009-12-05T12:24:31Z<p>I've got it! Thank Og for <a href="http://brunokenj.net/blog/index.php/2007/04/09/utilizando-servertransfer-e-aspnet-ajax-10/" rel="nofollow">strange foreign language blogs</a> :)</p>
<p>To fix it, I can simply tell the ASP.NET AJAX client-side framework to direct the partial request directly at the real target of the Server.Transfer() call. I am quite scared of the possible side-effects (who knows what this skips - the infrastructure does have a purpose) but it seems to be working fine so far.</p>
<p>Here is the method that fixes the problem, called in my page's Load event:</p>
<pre><code> ///
/// Adds to the page a JavaScript that corrects the misbehavior of AJAX when a page is target of a Server.Transfer call.
///
protected void AjaxUrlBugCorrection()
{
string actualFile = Server.MapPath(AppRelativeVirtualPath);
string redirectFile = Server.MapPath(Context.Request.FilePath);
string baseSiteVirtualPath = HttpRuntime.AppDomainAppVirtualPath;
if (actualFile != redirectFile)
{
System.Text.StringBuilder sbJS = new System.Text.StringBuilder();
string actionUrl = string.Format("'{0}'", baseSiteVirtualPath + AppRelativeVirtualPath.Replace("~", String.Empty));
sbJS.Append("Sys.Application.add_load(function(){");
sbJS.Append(" var form = Sys.WebForms.PageRequestManager.getInstance()._form;");
sbJS.Append(" form._initialAction = " + actionUrl + ";");
sbJS.Append(" form.action = " + actionUrl + ";");
sbJS.Append("});");
ClientScript.RegisterStartupScript(this.GetType(), "CorrecaoAjax", sbJS.ToString(), true);
}
}
</code></pre>
http://stackoverflow.com/questions/1777797/prevent-silverlight-3-from-caching-while-debugging/1778328#17783280Answer by Sander for Prevent Silverlight 3 from caching while debuggingSander2009-11-22T10:00:08Z2009-11-22T10:00:08Z<p>I have not had any issues with Silverlight assemblies getting cached - you might want to try debugging the HTTP requests that go back and forth, to see if maybe your server is instead returning incorrect information to the browser (e.g. a "not modified" response).</p>
<p>For general no-cache behavior, the only reliable method I have found is to turn off caching in the browser.</p>
<p>For IE, this has been the only reliable option - otherwise, even if proper no-cache headers are sent, certain things are still cached (specifically, dynamically loaded resources which are accessed via Javascript XmlHttpRequest). I have not specifically had issues with Silverlight getting cached when it should not, though - IE has always loaded the latest updates even if cache is enabled.</p>
<p>Firefox has been much more problematic - even when disabling cache, it still sometimes caches XmlHttpRequest-loaded resources. Manually hitting Refresh a few times has been the only solution in such a case. Once again, I have had no issues with Silverlight assembles, even if cache is turned on.</p>
http://stackoverflow.com/questions/1761421/nontrivial-incremental-change-deployment-with-visual-studio-database-projects0Nontrivial incremental change deployment with Visual Studio database projectsSander2009-11-19T07:04:14Z2009-11-19T07:04:14Z
<p>Let's assume that I'm doing some sort of nontrivial change to my database, which requires "custom" work to upgrade from version A to B. For example, converting user ID columns from UUID data type to the Windows domain username.</p>
<p>How can I make this automatically deployable? That is, I want to allow developers to right-click the project, click on "Deploy" and have this logic executed if they are using a database old enough.</p>
<p>I do not see any place for such login in database projects - there does not appear to be any provision for such "upgrade scripts". Is this really not possible? To clarify, the logic cannot obviously be generated automatically, but I want it to be executed automatically, as needed.</p>
<p>The first logical obstacle would, of course, be that the deployment utility would not know whether any such logic needs to be updated - I'd assume I could provide the logic for this, as well (e.g. check a versions table and if the latest version is <5.0, execute this upgrade, later adding a new version row).</p>
<p>Is this possible? Can I have fully automated deployment with complex custom change scripts? Without me having to stick all of my custom change logic into the (soon to be) huge pre- or post-build scripts, of course...</p>
http://stackoverflow.com/questions/1564847/change-windows-7-hotkey-or-disable-monitor-orientation/1564871#15648713Answer by Sander for Change windows 7 hotkey or disable monitor orientationSander2009-10-14T07:54:52Z2009-10-14T07:54:52Z<p>This is a hotkey of your video card driver. Check the settings in your video card control panel.</p>
http://stackoverflow.com/questions/265007/how-do-you-manage-huge-and-barely-maintainable-xaml-files5How do you manage huge and barely maintainable XAML files?Sander2008-11-05T12:30:55Z2009-09-25T18:45:58Z
<p>I'm having real difficulties with XAML files in Silverlight since they get very big very fast when using Blend. It just becomes a wall of text after only a handful of controls are added and animated.</p>
<p>I'm hoping a better vesion of Blend will come out soon, so that our designers will never even have to see XAML. For now, though, that is not a solution - XAML still needs to be managed manually and it is a depressing task.</p>
<p>Has anyone found a solution to this? How do you keep your XAML files in order? How do you understand them when they get big?</p>
<p><strong>Edit</strong>: I am especially interested in Silverlight solutions, since the most obvious WPF solution - splitting things up into resource dictionaries - is not supported in Silverlight.</p>
http://stackoverflow.com/questions/156507/does-a-silverlight-memory-profiler-exist2Does a Silverlight memory profiler exist?Sander2008-10-01T06:59:15Z2009-09-04T19:52:01Z
<p>CLR profiler does not seem to work with the Silverlight CLR. Does another memory profiler exist?</p>
http://stackoverflow.com/questions/1264436/writing-a-2d-rts-game-in-c-graphics-library-options/1264475#12644750Answer by Sander for Writing a 2D RTS game in C#: graphics library options?Sander2009-08-12T06:17:40Z2009-08-12T06:17:40Z<p>Going straight to <a href="http://msdn.microsoft.com/en-us/directx/default.aspx" rel="nofollow">DirectX</a> is a perfectly valid option, although for only 2D, you probably need to know a bit too much about 3D graphics to effectively use it.</p>
<p>Back when I was into game development, I was quite fond of the Artificial Heart graphics engine, which was somewhat basic but incredibly easy to use. Unfortunately, the <a href="http://www.3dlevel.com/gamedev/news.php" rel="nofollow">website</a> appears to have been replaced with a parked domain. Perhaps the company went out of business. If so, it is a shame.</p>
<p>For a more extensive catalogue, take a look at the <a href="http://www.devmaster.net/engines" rel="nofollow">DevMaster game engine database</a></p>
http://stackoverflow.com/questions/1237839/how-to-avoid-jerky-animations-when-adding-several-usercontrols0How to avoid jerky animations when adding several UserControls?Sander2009-08-06T09:20:20Z2009-08-06T14:08:32Z
<p>I have a Silverlight application where I periodically load more data and add it to the page as UserControls. I load about 25 objects in one set and create one UserControl for each object.</p>
<p>This ends up taking quite a bit of time! Loading 25 objects takes 50-150ms purely in the UI. This makes my animations rather jerky, which is very much undesirable.</p>
<p>Is there any way to speed up the loading of the UserControls? I would rather not add some sort of buffering layer which loads X items per second. I would also rather not preload some large buffer of UI objects, which I would zombiefy/reuse based on how much data comes in. At the moment, however, I can't think of any other options.</p>
<p>The UserControls themselves are rather simple and I am very surprised that they load so slowly. Basically, I just create them (doing nothing expensive in the constructor), set the DataContext and add them to their parent canvas.</p>
<p>Is it supposed to be that slow? Is there something obvious I could be missing here? Can I somehow decouple this from the animations timing? I guess not - the UI is almost certainly single-threaded.</p>
http://stackoverflow.com/questions/1226969/how-to-force-requests-to-be-json-i-e-how-to-block-xml-body0How to force requests to be JSON? I.e. how to block XML body?Sander2009-08-04T11:34:22Z2009-08-04T15:04:00Z
<p>I have a REST WCF service and a WCF client application for it.</p>
<p>My operation has the WebGet attribute with the following properties: BodyStyle = WebMessageBodyStyle.Bare, ResponseFormat = WebMessageFormat.Json, RequestFormat = WebMessageFormat.Json</p>
<p>However, when I use the WCF client, the request is made with the body in XML format! This is undesirable! How can I change it to use JSON?</p>
<p>Furthermore, I want to prevent XML from being accepted on the server side, as well - how can I accomplish this? I would have expected specifying RequestFormat to do it but it appears to be just a suggestion?</p>
<p><strong>Edit: nevermind, I am an idiot.</strong> I was looking at the wrong operation contract - the right ones were inside a #region that I had not expanded... the client works fine. The server point is still valid but in the context of this question, it's probably for the better to consider this question closed.</p>
http://stackoverflow.com/questions/979791/net-do-i-need-to-keep-a-reference-to-webclient-while-downloading-asynchronously/979916#9799161Answer by Sander for .NET: Do I need to keep a reference to WebClient while downloading asynchronously?Sander2009-06-11T08:09:32Z2009-06-11T08:09:32Z<p>You can try debugging the application with Debugging Tools for Windows - it allows you to see what exactly is keeping references to a specific object (<a href="http://thecodeslinger.wordpress.com/2007/12/27/sosex-new-net-extensions-for-windbg/" rel="nofollow">with the appropriate plug-in</a>). Very useful for such cases.</p>
<p>I do not know the answer to your question, though. One possibility is that for the duration of the operation, WebClient makes itself one of the "root" objects, which are never garbage collected (a .NET application generally has around 5 to 10 such objects, which are the roots of several reference trees used by the application). This is pure speculation, though.</p>
http://stackoverflow.com/questions/979884/how-java-thread-class-determines-which-thread/979902#9799020Answer by Sander for How Java Thread Class Determines Which thread?Sander2009-06-11T08:05:21Z2009-06-11T08:05:21Z<p>Thread.interrupted() will execute in the same thread as your loop, so that method will simply check whether the current thread has been interrupted.</p>
http://stackoverflow.com/questions/246542/wcf-endpoint-listening/979898#9798980Answer by Sander for WCF-endpoint listeningSander2009-06-11T08:04:20Z2009-06-11T08:04:20Z<p>What service class is the .svc file pointing to? Is there a section for this class in the web.config or app.config file? Does this section have an element defined?</p>
<p>If not running under IIS, does this element have an address defined? Or does the have a base address defined?</p>
http://stackoverflow.com/questions/841992/iis-7-asp-net-accessviolationexception/970071#9700710Answer by Sander for IIS 7, ASP.NET: AccessViolationExceptionSander2009-06-09T13:25:13Z2009-06-09T13:25:13Z<p>A hardware error is occasionally the unexpected culprit in such cases. Everything may work perfectly, except one little method in one obscure DLL.</p>
<p>Or does this happen on multiple machines, as well? Try a different one.</p>
http://stackoverflow.com/questions/919244/converting-string-to-datetime-c-net/919270#9192701Answer by Sander for Converting String to DateTime C#.netSander2009-05-28T05:12:34Z2009-05-28T05:12:34Z<p>You have basically two options for this. <code>DateTime.Parse()</code> and <code>DateTime.ParseExact()</code>.</p>
<p>The first is very forgiving in terms of syntax and will parse dates in many different formats. It is good for user input which may come in different formats.</p>
<p>ParseExact will allow you to specify the exact format of your date string to use for parsing. It is good to use this if your string is always in the same format. This way, you can easily detect any deviations from the expected data.</p>
<p>You can parse user input like this:</p>
<pre><code>DateTime enteredDate = DateTime.Parse(enteredString);
</code></pre>
<p>If you have a specific format for the string, you should use the other method:</p>
<pre><code>DateTime loadedDate = DateTime.ParseExact(loadedString, "d", null);
</code></pre>
<p><code>"d"</code> stands for the short date pattern (see <a href="http://msdn.microsoft.com/en-us/library/az4se3k1.aspx" rel="nofollow">MSDN for more info</a>) and <code>null</code> specifies that the current culture should be used for parsing the string.</p>
http://stackoverflow.com/questions/905331/unauthorizedaccessexception-global-net-clr-networking/905407#9054071Answer by Sander for 'UnauthorizedAccessException' - 'Global\.net clr networking'Sander2009-05-25T05:08:58Z2009-05-25T05:08:58Z<p>From what I understand, this happens because the Guest account has some very odd permissions assigned to it. This is <em>not</em> an error that says you cannot use networking - basic networking is still available under partial trust.</p>
<p>This error happens because the CLR cannot access one of its own performance counters, which is used during networking operations. This problem should not occur with other user accounts - do you specifically need to use Guest? A normal limited user account should work just fine. The Guest account is known to have many issues with access rights in relation to .NET - the account is rarely used in practice and few things are ever tested on it.</p>
<p>Regarding code access security, it does not matter which user you run code under - CAS permissions are the same for all users, by default. The trust level is determined by the location of the executable - running something installed on the local machine grants it full trust, running from other locations grants partial trust (see Code Groups in .NET Framework Configuration).</p>
http://stackoverflow.com/questions/897212/how-to-supress-the-creation-of-an-net-exception-object/897223#8972233Answer by Sander for How to supress the creation of an (.net) Exception object?Sander2009-05-22T10:24:10Z2009-05-22T10:24:10Z<p>Yes, it will be created.
No, there is no way to avoid this.</p>
http://stackoverflow.com/questions/877811/c-string-insertions-confused-with-optional-parameters/877821#8778219Answer by Sander for C# string insertions confused with optional parametersSander2009-05-18T13:46:51Z2009-05-18T13:46:51Z<p>Yes, this will be interpreted as just a second parameter.</p>
<p>The behavior you describe is called string formatting and everything that accepts strings in this style uses string.Format() in the background. See the documentation of that method for details.</p>
<p>To get the desired behavior, use this code:</p>
<pre><code>myClass = new MyClass(string.Format("abc{0}ghi", toInsert));
</code></pre>
http://stackoverflow.com/questions/851481/how-to-anonymize-new-log-records-without-breaking-relations-between-old-and-new-d1How to anonymize new log records without breaking relations between old and new data?Sander2009-05-12T06:53:46Z2009-05-12T08:33:55Z
<p>I am generating log records about user actions. For privacy reasons, these need to be anonymized after N days. However, I also need to run reports against this anonymized data.</p>
<p>I want all actions by real user A to be listed under fake user X in the anonymized logs - records of one user must still remain records of one (fake) user in the logs. This obviously means that I need to have some mapping between real and fake users, which I use when anonymizing new records. Of course, this totally defeats the point of anonymization - if there's a mapping, the original user data can be restored.</p>
<p>Example:</p>
<blockquote>
<p>User Frank Müller bought 3 cans of soup.</p>
<p>Three days later, User Frank Müller asked for refund for 3 cans of soup.</p>
</blockquote>
<p>When I anonymize the second log entry, the first one has already been anonymized. I still want both log records to point to the same user. Well, that seems almost impossible to me in practice, so I would like to use some method of splitting up data that hopefully allows me to keep as much integrity as possible in the data. Perhaps using the logs as a data warehouse - split everything into facts and just accept the fact that some dimensions cannot be analyzed?</p>
<p>Have you encountered such a scenario before? What are my options here? I obviously need to make some sort of compromise - what has proven effective for you? How to get the most use out of such data?</p>
http://stackoverflow.com/questions/805895/how-come-closing-a-tab-doesnt-close-a-session-cookie/805898#8058981Answer by Sander for How Come Closing A Tab Doesn't Close A Session Cookie?Sander2009-04-30T08:19:27Z2009-04-30T08:19:27Z<p>This is by design and trying to change it is a very bad idea. What if a user opens a link in a new tab and closes that? Should the session in the original tab be destroyed? Of course not! This demonstrates why you should not even think about this.</p>
<p>A session ends when the last browser window closes. If you want something else, you:</p>
<ol>
<li>do not want sessions;</li>
<li>need to make your own "mini-session" infrastructure;</li>
<li>are probably in for a world of hurt and bugs.</li>
</ol>
http://stackoverflow.com/questions/796607/how-do-i-override-tostring-in-c-enums/796646#79664611Answer by Sander for How do I override ToString in C# enums?Sander2009-04-28T07:33:25Z2009-04-28T07:33:25Z<p>Don't! Enums are primitives and not UI objects - making them serve the UI in .ToString() would be quite bad from a design standpoint. You are trying to solve the wrong problem here: the real issue is that you do not want Enum.ToString() to show up in the combo box!</p>
<p>Now this is a very solveable problem indeed! You create a UI object to represent your combo box items:</p>
<pre><code>sealed class NicenessComboBoxItem
{
public string Description { get { return ...; } }
public HowNice Value { get; private set; }
public NicenessComboBoxItem(HowNice howNice) { Value = howNice; }
}
</code></pre>
<p>And then just add instances of this class to your combo box's Items collection and set these properties:</p>
<pre><code>comboBox.ValueMember = "Value";
comboBox.DisplayMember = "Description";
</code></pre>
http://stackoverflow.com/questions/796246/what-is-the-difference-between-linq-query-expressions-and-extension-methods/796341#7963411Answer by Sander for What is the difference between LINQ query expressions and extension methodsSander2009-04-28T05:31:13Z2009-04-28T05:31:13Z<p>Query expressions and extension methods are two ways to do the exact same thing. Query expressions get transformed to extension methods when compiling - they are just syntactic sugar for people who are more comfortable with SQL.</p>
<p>When you write this:</p>
<pre><code>var surveyNames = from s in db.Surveys select s.Name;
</code></pre>
<p>The compiler transforms this into:</p>
<pre><code>IQueryable<string> surveryNames = db.Surveys.Select(s => s.Name);
</code></pre>
<p>Really, I think query expressions were just created for marketing reasons - a SQL-like language construct to act as an eye-catcher when LINQ was developed, not something that offers much actual use. I find that most people just use the extension methods directly, as they result in a more unified coding style, instead of a mix of C# and SQL.</p>
http://stackoverflow.com/questions/762117/webresource-axd-404-for-my-sitemappath-css-and-others/775927#7759270Answer by Sander for WebResource.axd 404 for my SiteMapPath CSS and others.Sander2009-04-22T06:26:03Z2009-04-22T06:26:03Z<p>Does the Event Log perhaps contain a more informative error message? A 404 return code may not necessarily mean "not found" - the ASP.NET handler may still execute but result in an error. This error message will probably indicate the fault.</p>
<p>If there are no errors in the Event Log then:</p>
<ol>
<li>Check whether other WebResource.axd calls are succeeding. Does the application actually use any WebResource calls?</li>
<li>Do the resources you are trying to load actually exist within the application? You can use Reflector to peek into any 3rd party DLLs and see their resources.</li>
<li>Does your application re-configure or otherwise mess around with HTTP handlers? If so, perhaps something might be unregistering or pre-empting the WebResource.axd handler?</li>
</ol>
http://stackoverflow.com/questions/771772/meaning-of-text-between-square-brackets/771781#7717811Answer by Sander for Meaning of text between square bracketsSander2009-04-21T09:23:20Z2009-04-21T09:23:20Z<p>These are <a href="http://msdn.microsoft.com/en-us/library/z0w1kczw.aspx" rel="nofollow">attributes</a>.</p>
<p>Attributes have many uses - <code>[Obsolete]</code> marks a method as obsolete and the compiler will warn you. Others like <code>[DebuggerNonUserCode]</code> tell nothing to the compiler and are there to let the debugger know that the code in the marked method is auto-generated.</p>
<p>You can also create your own attributes and use them to mark any kind of metadata. For example, your Customer object might have an attribute <code>[MarketingInformation("Customer is rich! Milk him good!")].</code></p>
http://stackoverflow.com/questions/720667/help-data-binding-does-not-work-in-silverlight-on-mac/771604#7716041Answer by Sander for Help! Data binding does not work in Silverlight on MacSander2009-04-21T08:26:03Z2009-04-21T08:26:03Z<p>Your usage of the model object instance in Page seemed odd to me right away. It is not downright incorrect but unusual to me. Some experimentation led me to a working solution, albeit without knowing the cause of the error that happened in the first place. Not many people instantiate objects directly in the DataContext assignment, which is probably why this is not a well-known (and fixed!) defect.</p>
<ol>
<li>Remove the DependencyObject base class from MyModel.</li>
<li>Make the MyModel instance be a resource of Page, instead of instantiating it directly into the DataContext.</li>
<li>Modify the Button_Click event handler to load the resource, instead of the named Page child object.</li>
<li>All done!</li>
</ol>
<p>Code snippets for the working solution follow.</p>
<p>Page.xaml</p>
<pre><code><UserControl.Resources>
<my:MyModel x:Key="TheModel"/>
</UserControl.Resources>
<Grid x:Name="LayoutRoot" Background="White" DataContext="{StaticResource TheModel}">
</code></pre>
<p>Page.xaml.cs</p>
<pre><code>private void Button_Click(object sender, RoutedEventArgs e)
{
((MyModel)Resources["TheModel"]).BeginUpdateBitmap();
}
</code></pre>
<p>MyModel.cs</p>
<pre><code>public sealed class MyModel : INotifyPropertyChanged
{
</code></pre>
<p>Please also include the source code with your question in the future. It would have made this quite a bit simpler.</p>
http://stackoverflow.com/questions/759215/why-does-the-c-compiler-explicitly-declare-all-interfaces-a-type-implements/759264#7592641Answer by Sander for Why does the C# compiler explicitly declare all interfaces a type implements?Sander2009-04-17T06:33:25Z2009-04-17T06:33:25Z<p>I don't think we can know any definitive answer here, unless we have the compiler developers drop in. However, we can guess about the reasons. It could be:</p>
<ol>
<li>for optimization - perhaps it saves some work for the JIT compiler.</li>
<li>for readability - makes it easier for human eyes to grasp what a type implements when looking at the MSIL output.</li>
<li>because that's how the summer intern implemented it and since it works fine, nobody is going to change it just in case it breaks something.</li>
</ol>
http://stackoverflow.com/questions/565798/how-to-make-appoffline-htm-stop-being-created-and-deleted-at-each-build/565810#5658101Answer by Sander for How to make app_offline.htm stop being created and deleted at each build?Sander2009-02-19T15:22:47Z2009-02-20T06:59:27Z<p>This file does not go into the Recycle Bin for me. Perhaps you have some draconian utilities installed, which do this? Many anti-virus tools and general system utility suites used to do this back in 2000 but I do not have experience with later versions.</p>
<p>Update: You can use <a href="http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx" rel="nofollow">Process monitor</a> to find out which process moves this file to the recycle bin.</p>
http://stackoverflow.com/questions/492044/what-is-a-the-best-practice-for-location-of-windows-service-logfiles/492134#4921341Answer by Sander for What is a the 'best practice' for location of windows service logfiles?Sander2009-01-29T15:43:14Z2009-01-29T15:43:14Z<p>Use the event log - it can store data in rich formats and supports good querying via WMI (e.g. the administrators can query logs from all 100 servers at once for warnings that contain the filename "Payroll.xml" - no digging through log files to troubleshoot services).</p>
http://stackoverflow.com/questions/271588/passing-null-arguments-to-c-methods/271600#27160017Answer by Sander for Passing null arguments to C# methodsSander2008-11-07T09:19:24Z2009-01-27T16:41:11Z<p>Yes. There are two kinds of types in .NET: reference types and value types.</p>
<p>References types (generally classes) are always referred to by references, so they support null without any extra work. This means that if a variable's type is a reference type, the variable is automatically a reference.</p>
<p>Value types (e.g. int) by default do not have a concept of null. However, there is a wrapper for them called Nullable. This enables you to encapsulate the non-nullable value type and include null information.</p>
<p>The usage is slightly different, though.</p>
<pre><code>// Both of these types mean the same thing, the ? is just C# shorthand.
private void Example(int? arg1, Nullable<int> arg2)
{
if (arg1.HasValue)
DoSomething();
arg1 = null; // Valid.
arg1 = 123; // Also valid.
DoSomethingWithInt(arg1); // NOT valid!
DoSomethingWithInt(arg1.Value); // Valid.
}
</code></pre>
http://stackoverflow.com/questions/479705/reinterpretcast-in-c/479767#4797676Answer by Sander for reinterpret_cast in C#Sander2009-01-26T13:21:55Z2009-01-27T16:37:38Z<p>You can achieve this but this is a relatively bad idea. Raw memory access like this is not type-safe and can only be done under a full trust security environment. You should never do this in a properly designed managed application. If your data is masquerading under two different forms, perhaps you actually have two separate data sets?</p>
<p>In any case, here is a quick and simple code snippet to accomplish what you asked:</p>
<pre><code>byte[] bytes = new byte[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
int byteCount = bytes.Length;
unsafe
{
// By using the fixed keyword, we fix the array in a static memory location.
// Otherwise, the garbage collector might move it while we are still using it!
fixed (byte* bytePointer = bytes)
{
short* shortPointer = (short*)bytePointer;
for (int index = 0; index < byteCount / 2; index++)
{
Console.WriteLine("Short {0}: {1}", index, shortPointer[index]);
}
}
}
</code></pre>
http://stackoverflow.com/questions/1778725/how-stable-is-vs2010-beta-2/1778727#1778727Comment by Sander on How stable is VS2010 beta 2?Sander2009-11-22T14:02:05Z2009-11-22T14:02:05ZNo, it doesn't. It means you are allowed to publish the software you create with it. And that would be the answer to a "what" question, anyway, not a "where" question...http://stackoverflow.com/questions/1679141/problem-publishing-silverlight-application-localhostComment by Sander on Problem Publishing Silverlight Application LocalHostSander2009-11-05T10:18:27Z2009-11-05T10:18:27ZWhat do you mean by "trying to publish"? What exactly are you trying to do and how are you trying to do it?
http://stackoverflow.com/questions/1293278/what-became-of-the-last-oneComment by Sander on What became of 'The last one'?Sander2009-08-18T11:47:12Z2009-08-18T11:47:12ZI see no reason to wiki this - it is a legitimate non-chat question that can have a concrete answer.http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/1287006#1287006Comment by Sander on What is your best programmer joke?Sander2009-08-17T09:45:35Z2009-08-17T09:45:35ZThe "This is a true joke" bit ruins it...http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/1019347#1019347Comment by Sander on Worst UI You've Ever UsedSander2009-08-05T08:40:57Z2009-08-05T08:40:57ZI actually find it to be pretty usable once you hide all that pointless crap and are left with a barebones UI. It works much better than Visio or Enterprise Architect, at least. Definitely not something I'd be proud of making but it is usable. Some of the stuff is particularily preplexing, though... like a toolbar button for creating a new diagram... that is, one button for every possible diagram type!http://stackoverflow.com/questions/1231763/cant-get-linq-to-sql-log-outputComment by Sander on Can't get Linq To Sql log outputSander2009-08-05T08:28:58Z2009-08-05T08:28:58ZMaybe it isn't actually executing any query? Are you sure it even gets to that point? Post the exception.http://stackoverflow.com/questions/1011167/what-are-common-ui-misconceptions-and-annoyances/1069441#1069441Comment by Sander on What are common UI misconceptions and annoyances?Sander2009-08-05T08:21:15Z2009-08-05T08:21:15ZI once worked on an application that had a huge form that needed to fit in a tight space. The programmers did a Tetris job on it, so it somehow fit but everyone hated it because it was missing all logic in the arrangement, which made data entry hard. So the project manager figured out a brilliant solution... customize the tab order so it goes in the order that the data entry people want to enter the data! I believe an appropriate name would be the write-only form paradigm...http://stackoverflow.com/questions/1011167/what-are-common-ui-misconceptions-and-annoyances/1074165#1074165Comment by Sander on What are common UI misconceptions and annoyances?Sander2009-08-05T08:18:27Z2009-08-05T08:18:27ZIndeed! This is actually often a bad idea for failures, as well! It is generally much better to just use a far more unobtrusive approach. Imagine the red X for missing images in IE - this is a good way to handle errors, instead of some "Failed to load image ABC!" message box. Message boxes should only be used if their meaning is not available from the primary context itself (e.g. page/document/...).http://stackoverflow.com/questions/1221503/detect-local-sql-server-installation-with-c32-bit-as-well-as-64-bitComment by Sander on Detect local SQL server installation with C#(32 bit as well as 64 bit)Sander2009-08-03T10:00:29Z2009-08-03T10:00:29ZA specific version? Any version? Does bitness matter (32-bit or 64-bit)? Editions? Does it matter if its actually running? Does it matter if you are able to access it? What exactly do you need to find out? "Installed or not" is not as clear cut as it may seem.http://stackoverflow.com/questions/1221450/c-decimal-to-numericComment by Sander on C# Decimal to Numeric(?,?)Sander2009-08-03T09:59:11Z2009-08-03T09:59:11ZNo need not to, either... people can downvote for whatever reason they want to :)http://stackoverflow.com/questions/1221312/difference-ie-and-webkitComment by Sander on Difference IE and WebkitSander2009-08-03T09:05:27Z2009-08-03T09:05:27ZCould you link to a live repro? It would be easier to debug this if we could load the page up in a browser.http://stackoverflow.com/questions/380819/common-programming-mistakes-for-net-developers-to-avoid/814020#814020Comment by Sander on Common programming mistakes for .NET developers to avoid?Sander2009-07-22T12:29:40Z2009-07-22T12:29:40ZFrom what I've seen, it's pretty common practice to ignore errors that occur during error logging. Why is this bad? How should the situation be handled instead?http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/647789#647789Comment by Sander on What was the strangest coding standard rule that you were forced to follow?Sander2009-07-13T05:57:38Z2009-07-13T05:57:38ZI always enforce this rule. I suppose it's due to my belief if the broken windows theory (being sloppy in one place encourages people to be sloppy in other places).http://stackoverflow.com/questions/1104016/team-foundation-server-tfs-cant-browse-folders-properly-using-visual-studioComment by Sander on Team Foundation Server (TFS) - can't browse folders properly using Visual StudioSander2009-07-09T13:54:17Z2009-07-09T13:54:17ZSource control, documents and reports all exist in different systems with potentially different access rights - maybe your user account has broken permissions? Does a different account on the same machine still fail?http://stackoverflow.com/questions/1006653/extending-system-data-linq-datacontext/1006741#1006741Comment by Sander on Extending System.Data.Linq.DataContextSander2009-06-17T12:44:19Z2009-06-17T12:44:19ZIndeed, it is almost certain to be this. One should never have the using statements outside the namespace in the DBML's code-behind file.