User Daniel - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T15:46:39Zhttp://stackoverflow.com/feeds/user/23296http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/245566/net-compact-framework-4-02.net Compact Framework 4.0Daniel2008-10-29T02:00:58Z2009-12-17T20:49:32Z
<p>Will their be a new release of the compact framework with VS2010 and .net 4.0 and if so what new features will it include?
WPF?
linq to SQL?
etc</p>
http://stackoverflow.com/questions/1836872/how-to-use-linq-to-get-last-string-in-liststring-which-has-character-p-in-sec/1836919#18369191Answer by Daniel for How to use LINQ to get last string in list<string> which has character 'P' in second position in string?Daniel2009-12-03T00:36:01Z2009-12-03T00:44:30Z<p>Using Query syntax:</p>
<pre><code>int indexOfLast = (from index in Enumerable.Range(0, strings.Length -1)
where strings[index].Length >= 2 && strings[index][1] == 'P'
select index).Last();
</code></pre>
http://stackoverflow.com/questions/1835412/regular-expression-for-textarea/1836404#18364040Answer by Daniel for regular expression for textareaDaniel2009-12-02T22:43:43Z2009-12-02T23:18:29Z<p>Read this:
<a href="http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags/1732454#1732454">http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags/1732454#1732454</a></p>
<p>This question is like saying how do you do up a bolt with a hammer. Now I'm sure if you were determined enough you could do tighten the bolt with a hammer. However it would be difficult and problematic to say the least and the chances are you would break something by trying.</p>
<p>Take a step back, throw away the assumption that your hammer is the best tool and go back to your tool box, if you dig around in there you will find a better tool its called an HTML parser.</p>
http://stackoverflow.com/questions/1830400/sqlce-3-5-fips-compliance-on-windows-mobile-6-00SQLCE 3.5 FIPS compliance on Windows Mobile 6.0Daniel2009-12-02T03:02:07Z2009-12-02T03:15:01Z
<p>What is a positions of SQLCE 3.5 when running on Windows Mobile 6.0 in relation to FIPS compliance.</p>
<p>I have read lots of differing reports on this and need a definitive answer, one which comes from a reliable source (please provide links)</p>
<p>I have read this
"The encryption modes in SQL Server Compact 3.5 are FIPS complaint if FIPS mode is enabled at the OS level."</p>
<p>Is this true? if so how does one enable it at the OS level.</p>
http://stackoverflow.com/questions/84058/is-net-a-write-once-run-anywhere-wora-platform-like-java-claims-to-be/1778001#17780010Answer by Daniel for Is .NET a write once, run anywhere (WORA) platform like Java claims to be?Daniel2009-11-22T06:26:35Z2009-11-22T06:26:35Z<p>To put this in context, in many people's view Java never delivered on its "Write Once Run Anywhere" promise either.</p>
<p>At best what you got was "Write Once Debug Everywhere" or "Write Once Looks like crap Everywhere"</p>
<p>The successful CLR based applications have all been written using a graphical framework that is native to the target platform.</p>
<p>For example the following highly successful linux applications where written using c# bindings to GTK called GTK# and not using winforms like you would expect:</p>
<p>Banshee - music player like itunes</p>
<p>fspot - photo manager</p>
<p>TomBoy - notes program</p>
<p>GnomeDo - Quick launcher and dock</p>
<p>Equally successful windows .net applications are not written using GTK# (even though it is cross platform) they are written using winforms or WPF.</p>
<p>When google came to make Chrome they didn't try to use a cross platform GUI framework, instead they choose to use native GUI frameworks on each platform. Why? because that way the application, fits properly into it's environment, that way it looks, feels and acts like its native to the operating system its on.</p>
<p>Basically when you try to have write once run anywhere you have to make serious compromises and what you end up with is something that doesn't really work right anywhere.</p>
<p>The industry has largely given up on the lofty goal of write once run anywhere, as a nice idea which didn't work out in practice.</p>
<p>The best approach with mono/.net is to share your lower level binaries and to use a native gui framework on each target platform. GTK# on linux, winforms or WPF on windows, CocoaSharp on Mac. This way your application will look and feel like a native app.</p>
http://stackoverflow.com/questions/1685320/com-interop-registration-problem1COM Interop registration problemDaniel2009-11-06T03:59:01Z2009-11-13T00:14:06Z
<p>I have a .net assembly which I am exposing to com.</p>
<p>the assembly has two public interfaces and one public class.</p>
<p>When I build the assembly I get this warning.</p>
<p>"(assemblyName.dll) does not contain any types that can be registered for COM Interop."</p>
<p>My assembly info includes the following line.</p>
<pre><code>[assembly: ComVisible(true)]
</code></pre>
<p>Most people having this problem on the web that I have found fixed it with the above line in their assembly info. This has not helped for me.</p>
<p>I also tried adding [ComVisible(true)] to the class and interface definitions and it also did not help.</p>
http://stackoverflow.com/questions/245566/net-compact-framework-4-0/1712217#17122171Answer by Daniel for .net Compact Framework 4.0Daniel2009-11-11T00:28:23Z2009-11-11T00:28:23Z<p>The bad news is that Visual Studio 2010 Beta 2 <a href="http://msdn.microsoft.com/en-us/library/sa69he4t%28VS.100%29.aspx" rel="nofollow">does not support Smart Device Development</a>.
Microsoft have said that the final Visual Studio 2010 will support Smart Device Development but are not telling us how or in what form that will take and what technologies it will support. </p>
<p>The funny thing is that now with mono touch, iphone support for .net is looking better then Windows Mobile support. Microsoft has really dropped the ball on this one.</p>
<p>You can however install VS2008 along side VS2010.</p>
http://stackoverflow.com/questions/1641456/register-activex-exe-server-using-wix1Register ActiveX exe server using WiXDaniel2009-10-29T03:29:01Z2009-10-31T20:53:05Z
<p>I have several VB6 ActiveX server exe files which need to be registered on install before they can be used.</p>
<p>I have tried using Heat to extract the information but it only generates a file element.</p>
<p>These files can be registered by calling them with the /regserver switch and unregister by calling them with the /unregserver switch. I understand this is not the correct way to this. Instead I should add the registry keys and other required elements to my wix source.</p>
<p>My question is how do I find out what registry keys and other element I require to register these ActiveX exe files. Seeing as Heat seems unable to harvest this information.</p>
http://stackoverflow.com/questions/1633779/moving-development-from-windows-to-linux/1634096#16340961Answer by Daniel for Moving development from Windows to LinuxDaniel2009-10-27T22:45:02Z2009-10-27T23:11:36Z<p>If you are going to do c# development on linux I would recommend <a href="http://monodevelop.com/Main%5FPage" rel="nofollow">MonoDevelop</a>. It is designed specifically for .net development (eclipse is not) and it is really quite full featured now, it includes a visual debuggers, code completion, graphical nunit integration and virtually everything else you would expect from a modern IDE. It includes some features missing from Visual Studio. I was excited just recently to discover I can right click on an interface and choose find all implementations, This is a feature not implemented in visual studio and which I find extremely helpful.</p>
<p>Regarding the GUI libaries, if you are using c# on linux then the best GUI framework is <a href="http://www.mono-project.com/GtkSharp" rel="nofollow">GTK#</a>. <a href="http://monodevelop.com/Main%5FPage" rel="nofollow">MonoDevelop</a> includes a built in graphical designer for it.
Several mature and widely used linux applications use this including:</p>
<p><a href="http://banshee-project.org/" rel="nofollow">Banshee</a> - music player</p>
<p><a href="http://f-spot.org/Main%5FPage" rel="nofollow">FSpot</a> - photo manager (default in Ubuntu)</p>
<p><a href="http://projects.gnome.org/tomboy/" rel="nofollow">Tomboy</a> - Notes application (default in gnome)</p>
<p><a href="http://monodevelop.com/Main%5FPage" rel="nofollow">MonoDevelop</a> - IDE (similar to Visual Studio)</p>
<p><a href="http://www.mono-project.com/GtkSharp" rel="nofollow">GTK#</a> is also cross platform and so can run on mac and windows as well. This is proved by its usage in MonoDevelop where it is used to run on linux, mac and windows.</p>
http://stackoverflow.com/questions/1360594/cvs-line-endings1CVS line endingsDaniel2009-09-01T04:58:11Z2009-09-01T09:06:49Z
<p>We have a large number of programmers on different platforms all using CVS.</p>
<p>We have developers using windows with TortoiseCVS (which uses cvsNT)</p>
<p>We have developers using ubuntu 8.04</p>
<p>We have developers who have two boxes Ubuntu and windows.</p>
<p>A wide range of different editors are used by different developers on different platforms.</p>
<p>And we are having huge problems with line endings. Which manifests as a continual growth in the number of line endings in the files.</p>
<p>Now as I understand it TortoiseCVS uses cvsNT which assumes UNIX line endings in the repository. When you check out it converts the UNIX line ending to windows line endings and when you commit it converts the windows line endings back to UNIX line endings.</p>
<p>In ubuntu the cvs clients does no conversions as the repository should be UNIX line endings and linux also uses UNIX line endings.</p>
<p>This all works fine provided everyone on windows uses a cvsNT based client. And no-one switches their OS.</p>
<p>Sadly people with Ubuntu and Windows boxes often switch and may checkout, edit or commit on different operating systems.</p>
<p>And as a result they end up committing a file using the linux CVS client which has windows line endings.</p>
<p>When this is checked out using a cvsNT client on windows the CRLF is converted to CRCRLF which appears as two lines. The more times this happens the more new lines appear in the file.</p>
<p>Is there a way to make CVS on linux convert any windows line endings to UNIX line endings on a commit to prevent this from happening. This way the CVS server will only have UNIX line endings.</p>
<p>Any other suggestion of ways to overcome this are also welcome.</p>
http://stackoverflow.com/questions/1355903/windows-mobile-min-specs0Windows Mobile min specsDaniel2009-08-31T05:21:18Z2009-08-31T17:43:52Z
<p>Is there any minimum required hardware specifications for Windows Mobile 5.0 Pocket PC or Windows Mobile 6 Classic.</p>
<p>I know Microsoft has requirements to do with the screen (much be a touch screen etc)</p>
<p>But I am trying to find out if their are Minimum CPU speeds and Flash memory sizes. So I can test against and program to these minimums.</p>
http://stackoverflow.com/questions/1303754/overriding-c-conditional-statements-problem/1303777#13037771Answer by Daniel for Overriding C# Conditional statements problemDaniel2009-08-20T03:22:36Z2009-08-20T03:22:36Z<p>Is your program multi threaded?</p>
<p>I have seen situations where I check a value and then try using it only to find its changed. Whats happened is that another thread as changed the value after I checked it but before I used it. </p>
http://stackoverflow.com/questions/1269452/is-using-delegates-excessively-a-bad-idea-for-performance/1269658#12696582Answer by Daniel for Is using delegates excessively a bad idea for performance?Daniel2009-08-13T02:02:03Z2009-08-13T02:02:03Z<p>There is a difference in performance. How significant it is will depend on the rest of your code so I would recommend profiling before embarking on optimisations.</p>
<p>Having said that for your first example:</p>
<pre><code>if (IsDebuggingEnabled)
{
instance.Log(GetDetailedDebugInfo());
}
</code></pre>
<p>If IsDebuggingEnabled is static readonly then the check will be jitted away as it knows it can never change. This means that the above sample will have zero performance impact if IsDebuggingEnabled is false, because after the JIT is done the code will be gone.</p>
<pre><code>instance.Log(() => GetDetailedDebugInfo());
public void Log(Func<string> getMessage)
{
if (IsDebuggingEnabled)
{
LogInternal(getMessage.Invoke());
}
}
</code></pre>
<p>The method will be called every time instance.Log is called. Which will be slower.</p>
<p>But before expending time with this micro optimization you should profile your application or run some performance tests to make sure this is actually a bottle neck in your application.</p>
http://stackoverflow.com/questions/1186515/interlocked-and-volatile6Interlocked and volatileDaniel2009-07-27T05:06:10Z2009-07-27T06:51:33Z
<p>I have a variable which I am using to represent state. It can be read and written to from multiple threads.</p>
<p>I am using Interlocked.Exchange and Interlocked.CompareExchange to change it. However I am reading it from multiple threads.</p>
<p>I know that volatile can be used to make sure the variable is not cached locally but always reads directly from memory.</p>
<p>However if I set the variable to volatile then it generates a warning about using volatile and passing using ref to the Interlocked methods.</p>
<p>I want to ensure that each thread is reading the most recent value of the variable and not some cached version, but I can't use volatile.</p>
<p>There is a Interlocked.Read but it is for 64 bit types and is not available on the compact framework. The documentation for it says that it is not needed for 32 bit types as they are already performed in a single operation.</p>
<p>There are statements made across the internet that you don't need volatile if you are using the Interlocked methods for all your access. However you can't read a 32 bit variable using the Interlocked methods, so there is no way you can use Interlocked methods for all your access.</p>
<p>Is there some way to accomplish the thread safe read and write of my variable without using lock?</p>
http://stackoverflow.com/questions/1169699/statically-checked-design-by-contract3Statically checked design by contractDaniel2009-07-23T05:04:19Z2009-07-23T06:45:53Z
<p>I recently got excited by the idea of statically check design by contract in .net 4.0 / Visual Studio 2010.</p>
<p>However I was saddened to find out that it will only be available in Visual Studio Team System. <a href="http://msdn.microsoft.com/en-us/devlabs/dd491992.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/devlabs/dd491992.aspx</a> </p>
<p>Are there any alternatives which give statically checked design by contract for c#?</p>
<p>Will the mono project be adding this functaionality to there compiler? </p>
http://stackoverflow.com/questions/1106436/compact-framework-current-folder/1107032#11070324Answer by Daniel for Compact Framework Current Folder....Daniel2009-07-09T23:55:54Z2009-07-09T23:55:54Z<p>Don't fight the system.</p>
<p>Microsoft does not want you to use the program files folder for anything other then assemblies. Config files should go in Application Data, Save files and the like which users need to know about go in My Documents.</p>
<p>jalf's answer will work but you are fighting the system. Unless their is a really good reason why you want to know what folder your assembly is in then I would suggest against it.</p>
http://stackoverflow.com/questions/151350/ides-for-c-development-on-linux/151363#1513634Answer by Daniel for IDE's for C# development on Linux?Daniel2008-09-30T00:56:18Z2009-07-02T11:36:18Z<p>MonoDevelop 2.0 has been released, it now has a decent GUI debugger, code completion, intellisense c# 3.0 support (including linq), and a descent GTK# Visual Designer.</p>
<p>In short, since the 2.0 release I have started using mono develop again and am very happy with it so far.</p>
<p>Check out the <a href="http://monodevelop.com/" rel="nofollow">MonoDevelop website</a> for more info.</p>
http://stackoverflow.com/questions/174981/mono-ide-on-windows/185820#1858204Answer by Daniel for Mono IDE on WindowsDaniel2008-10-09T03:21:28Z2009-07-01T22:43:19Z<p>MonoDevelop has now released a installer for Windows. You no longer need to build it from source. It is available from <a href="http://monodevelop.com/Download/Windows%5FPreview" rel="nofollow">the MonoDevelop website</a></p>
<p>However on windows it runs on the .NET Framework, not Mono - it uses the .NET debugger instead of the Mono one.</p>
http://stackoverflow.com/questions/1062930/threadstart-begininvoke-throws-notsupportedexception-on-compact-framework/1071597#10715970Answer by Daniel for ThreadStart.BeginInvoke throws NotSupportedException on Compact frameworkDaniel2009-07-01T22:05:54Z2009-07-01T22:17:48Z<p>delegate.BeginInvoke is not supported on the CF.</p>
<p>However the ThreadPool is supported. You can use the thread pool to achieve essentially the same behavior.</p>
<pre><code>void SomeMethod()
{
this.StartThreads();
}
void StartThreads()
{
System.Threading.ThreadPool.QueueUserWorkItem(DoStuff);
}
</code></pre>
<p>if you want it to call a callback when finished I suggest you read up on the <a href="http://msdn.microsoft.com/en-us/magazine/cc163467.aspx" rel="nofollow">Asynchronous Programming Model</a></p>
http://stackoverflow.com/questions/1063130/will-text-fit-in-gtk-textview-without-scroll-bar0Will text fit in GTK# TextView without scroll bar.Daniel2009-06-30T11:17:02Z2009-06-30T22:57:35Z
<p>I have a GTK# Text View with word wrap and scroll bars turned on. I know that horizontal scroll bars will not be show because the words will wrap instead.</p>
<p>I want to add some text but before adding it I want to find out if the text will fit without the need for a vertical scroll bar.</p>
<p>I don't want to add the text if it means that the text view will require a vertical scroll bar.</p>
<p>How do I do this?</p>
http://stackoverflow.com/questions/862668/net-clr-that-does-not-require-an-operating-system/942671#9426715Answer by Daniel for .NET CLR that does not require an operating system?Daniel2009-06-03T01:11:47Z2009-06-03T01:11:47Z<p>check out the <a href="http://www.microsoft.com/netmf/about/default.mspx" rel="nofollow">.NET Micro Framework</a> </p>
<p>unlike the projects suggested by Trillian which are projects to create a managed CLR OS (not what the question asked.) The .NET Micro Framework is the .NET CLR without an OS. It is commerially supported by microsoft and can be developed for using Visual Studio.</p>
http://stackoverflow.com/questions/641361/base32-decoding1Base32 DecodingDaniel2009-03-13T03:23:09Z2009-05-28T15:42:56Z
<p>I have a base32 string which I need to convert to a byte array. And I'm having trouble finding a conversion method in the .net framework. I can find methods for base64 but not for base32.</p>
<p>Convert.FromBase64String – something like this for base32 would be perfect.</p>
<p>Is there such a method in the framework or do I have to roll my own?</p>
http://stackoverflow.com/questions/913199/is-the-managed-heap-not-scalable-to-multi-core-systems4Is the Managed heap not scalable to multi-core systemsDaniel2009-05-26T23:00:48Z2009-05-27T01:22:37Z
<p>I was seeing some strange behavior in a multi threading application which I wrote and which was not scaling well across multiple cores.</p>
<p>The following code illustrates the behavior I am seeing. It appears the heap intensive operations do not scale across multiple cores rather they seem to slow down. ie using a single thread would be faster.</p>
<pre><code>class Program
{
public static Data _threadOneData = new Data();
public static Data _threadTwoData = new Data();
public static Data _threadThreeData = new Data();
public static Data _threadFourData = new Data();
static void Main(string[] args)
{
// Do heap intensive tests
var start = DateTime.Now;
RunOneThread(WorkerUsingHeap);
var finish = DateTime.Now;
var timeLapse = finish - start;
Console.WriteLine("One thread using heap: " + timeLapse);
start = DateTime.Now;
RunFourThreads(WorkerUsingHeap);
finish = DateTime.Now;
timeLapse = finish - start;
Console.WriteLine("Four threads using heap: " + timeLapse);
// Do stack intensive tests
start = DateTime.Now;
RunOneThread(WorkerUsingStack);
finish = DateTime.Now;
timeLapse = finish - start;
Console.WriteLine("One thread using stack: " + timeLapse);
start = DateTime.Now;
RunFourThreads(WorkerUsingStack);
finish = DateTime.Now;
timeLapse = finish - start;
Console.WriteLine("Four threads using stack: " + timeLapse);
Console.ReadLine();
}
public static void RunOneThread(ParameterizedThreadStart worker)
{
var threadOne = new Thread(worker);
threadOne.Start(_threadOneData);
threadOne.Join();
}
public static void RunFourThreads(ParameterizedThreadStart worker)
{
var threadOne = new Thread(worker);
threadOne.Start(_threadOneData);
var threadTwo = new Thread(worker);
threadTwo.Start(_threadTwoData);
var threadThree = new Thread(worker);
threadThree.Start(_threadThreeData);
var threadFour = new Thread(worker);
threadFour.Start(_threadFourData);
threadOne.Join();
threadTwo.Join();
threadThree.Join();
threadFour.Join();
}
static void WorkerUsingHeap(object state)
{
var data = state as Data;
for (int count = 0; count < 100000000; count++)
{
var property = data.Property;
data.Property = property + 1;
}
}
static void WorkerUsingStack(object state)
{
var data = state as Data;
double dataOnStack = data.Property;
for (int count = 0; count < 100000000; count++)
{
dataOnStack++;
}
data.Property = dataOnStack;
}
public class Data
{
public double Property
{
get;
set;
}
}
}
</code></pre>
<p>This code was run on a Core 2 Quad (4 core system) with the following results:</p>
<p>One thread using heap: 00:00:01.8125000</p>
<p>Four threads using heap: 00:00:17.7500000</p>
<p>One thread using stack: 00:00:00.3437500</p>
<p>Four threads using stack: 00:00:00.3750000</p>
<p>So using the heap with four threads did 4 times the work but took almost 10 times as long. This means it would be twice as fast in this case to use only one thread??????</p>
<p>Using the stack was much more as expected.</p>
<p>I would like to know what is going on here. Can the heap only be written to from one thread at a time?</p>
http://stackoverflow.com/questions/160032/does-dependency-injection-break-the-law-of-demeter5Does dependency injection break the Law of DemeterDaniel2008-10-01T22:22:10Z2009-05-26T01:37:15Z
<p>I have been adding dependency injection to my code because it makes by code much easier to Unit test through mocking.</p>
<p>However I am requiring objects higher up my call chain to have knowledge of objects further down the call chain.</p>
<p>Does this break the Law of Demeter? If so does it matter?</p>
<p>for example: a class A has a dependency on an interface B, The implementation of this interface to use is injected into the constructor of class A. Anyone wanting to use class A must now also have a reference to an implementation of B. And can call its methods directly meaning and has knowledge of its sub components (interface B)</p>
<p>Wikipedia says about the law of Demeter: "The fundamental notion is that a given object should assume as little as possible about the structure or properties of anything else (including its subcomponents)."</p>
http://stackoverflow.com/questions/684425/list-ordering-extension-method-not-firing/684498#6844981Answer by Daniel for List ordering - Extension method not firing!Daniel2009-03-26T04:10:16Z2009-03-26T04:34:46Z<p>your</p>
<pre><code>myStrings.OrderBy(each => Distance(each, target));
</code></pre>
<p>wont order your original list it return a ordered list.
You need:</p>
<pre><code>myStrings = myStrings.OrderBy(each => Distance(each, target)).ToList();
</code></pre>
<p>this will force the deferred execution to take place and give you the result you require.</p>
http://stackoverflow.com/questions/441309/why-are-mutable-structs-evil/441357#4413576Answer by Daniel for Why are mutable structs evil?Daniel2009-01-13T23:42:58Z2009-02-10T08:49:10Z<p>Structs are value types which means they are copied when they are passed around. </p>
<p>So if you change a copy you are changing only that copy, not the original and not any other copies which might be around.</p>
<p>If your struct is immutable then all copies will be the same.</p>
http://stackoverflow.com/questions/511138/cross-platform-programming-on-windows/514075#5140750Answer by Daniel for Cross platform programming on WindowsDaniel2009-02-05T00:50:27Z2009-02-05T00:50:27Z<p>You don't need mono develop, the whole idea of mono is you can develop for .net and have the same assemblies work on both mono and .net, provided you only use stuff which has been implemented in mono.</p>
<p>Stuff which won't work:
pinvoke,
wpf,
linq to SQL</p>
<p>Stuff which will work:
.net 2.0,
c# 3.0 (including linq to objects and linq to xml),
winforms</p>
http://stackoverflow.com/questions/18450/is-mono-ready-for-prime-time/147455#1474556Answer by Daniel for Is Mono ready for prime time?Daniel2008-09-29T03:55:57Z2009-01-22T20:54:46Z<p>If you want to use WPF you'rr out of luck Mono currently has no plans to implement it.</p>
<p><a href="http://www.mono-project.com/WPF" rel="nofollow">http://www.mono-project.com/WPF</a></p>
http://stackoverflow.com/questions/441559/how-to-do-robust-serialport-programming-with-net-c/441588#4415883Answer by Daniel for How to do robust SerialPort programming with .NET / C# ?Daniel2009-01-14T01:33:25Z2009-01-14T02:10:23Z<p>You can't close someone elses connection to a port, the following code will never work:</p>
<pre><code>if (serialPort.IsOpen) serialPort.Close();
</code></pre>
<p>Because your object didn't open the port you can't close it.</p>
<p>Also you should close and dispose the serial port even after exceptions occur</p>
<pre><code>try
{
//do serial port stuff
}
finally
{
if(serialPort != null)
{
if(serialPort.IsOpen)
{
serialPort.Close();
}
serialPort.Dispose();
}
}
</code></pre>
<p>If you want the process to be interruptible then you should Check if the port is open and then back off for a period and then try again, something like.</p>
<pre><code>while(serialPort.IsOpen)
{
Thread.Sleep(200);
}
</code></pre>
http://stackoverflow.com/questions/441275/how-to-embed-a-java-control-on-a-c-winforms-control/441436#4414360Answer by Daniel for How to embed a Java control on a C# winforms control?Daniel2009-01-14T00:19:19Z2009-01-14T00:19:19Z<p>Check out the <a href="http://www.ikvm.net/" rel="nofollow">IKVM</a> project. Its a Java Virtual Machine implemented in .net which allows java and .net interoperability.</p>
<p>Not sure exactly how complete it is and if it enables the functionality you require buts its worth a look.</p>
http://stackoverflow.com/questions/1793013/best-practices-for-net-mono-cross-compilingComment by Daniel on Best practices for .NET/MONO cross compilingDaniel2009-11-26T22:09:09Z2009-11-26T22:09:09Zcross compiling is the wrong phrase, you compile it once and then use it on both platforms.http://stackoverflow.com/questions/1685320/com-interop-registration-problem/1685960#1685960Comment by Daniel on COM Interop registration problemDaniel2009-11-08T21:26:08Z2009-11-08T21:26:08ZAdding a public default constructor did the trick however, the class in question is only ever constructed from the .net code. This was the reason no public default constructor was provided. I assume that this warning would also appear for an assembly only containing interfaces.http://stackoverflow.com/questions/1685320/com-interop-registration-problem/1685554#1685554Comment by Daniel on COM Interop registration problemDaniel2009-11-06T05:31:33Z2009-11-06T05:31:33Zno I don't but it doesn't need to be strong named I have other .net assemblies which work for com interop and are not stong named.http://stackoverflow.com/questions/1685320/com-interop-registration-problem/1685355#1685355Comment by Daniel on COM Interop registration problemDaniel2009-11-06T04:26:50Z2009-11-06T04:26:50ZTried the ComVisable(true) on the types + double checked that the types are public. Still no luck.http://stackoverflow.com/questions/1685320/com-interop-registration-problem/1685355#1685355Comment by Daniel on COM Interop registration problemDaniel2009-11-06T04:20:16Z2009-11-06T04:20:16ZThe GUID is generated at build time based on a has of the fully-qualified class name and the identity of the assembly containing the class. ie not necessary to do this yourself.http://stackoverflow.com/questions/1685320/com-interop-registration-problem/1685350#1685350Comment by Daniel on COM Interop registration problemDaniel2009-11-06T04:18:19Z2009-11-06T04:18:19Ztried and it doesn't help and should not be necessary as the ComVisible attribute in assembly info applies to everything.http://stackoverflow.com/questions/1677226/performant-file-copy-in-cComment by Daniel on Performant File Copy in C#?Daniel2009-11-05T01:06:01Z2009-11-05T01:06:01ZEvery word was established through use at some point, resisting the evolution of language by making rules about what is 'technically' a word or not is the linguistic equivalent of refusing to adopt new technologies. The real test of a word is if reader understands what the writer means when they use it.http://stackoverflow.com/questions/162163/registering-a-com-server-with-wix/265203#265203Comment by Daniel on Registering a COM server with WiXDaniel2009-10-29T03:32:36Z2009-10-29T03:32:36ZHeat does not generate any registry values for a ActiveX exe server, So this answer is wronghttp://stackoverflow.com/questions/1633779/moving-development-from-windows-to-linux/1633805#1633805Comment by Daniel on Moving development from Windows to LinuxDaniel2009-10-27T23:14:39Z2009-10-27T23:14:39ZSeriously is anyone actually using Eclipse for .net developmenthttp://stackoverflow.com/questions/1633779/moving-development-from-windows-to-linux/1633819#1633819Comment by Daniel on Moving development from Windows to LinuxDaniel2009-10-27T22:01:11Z2009-10-27T22:01:11ZI'm sure #Develop is great but the question was about IDEs which run on linux, unfortunitly #Develop does not.http://stackoverflow.com/questions/1303754/overriding-c-conditional-statements-problemComment by Daniel on Overriding C# Conditional statements problemDaniel2009-08-20T03:31:59Z2009-08-20T03:31:59Z:) - this was like playing 20 questionshttp://stackoverflow.com/questions/1232940/windows-mobile-application-background-problemComment by Daniel on Windows mobile application background problemDaniel2009-08-19T21:48:12Z2009-08-19T21:48:12ZI have this same problem two. The difference between the two pictures is that in the one that looks bad has gradual color change and the one that look good does not. They both actually suffer from the same problem it is just more noticeable in the gradual picture.http://stackoverflow.com/questions/1251710/when-to-use-c-c/1251730#1251730Comment by Daniel on When to use C#/C++Daniel2009-08-09T21:20:38Z2009-08-09T21:20:38ZMono supports SIMDhttp://stackoverflow.com/questions/1186515/interlocked-and-volatile/1186562#1186562Comment by Daniel on Interlocked and volatileDaniel2009-07-27T05:44:08Z2009-07-27T05:44:08ZOK so if I'm only using Interlocked to write then normals reads will always be up to date?http://stackoverflow.com/questions/1186515/interlocked-and-volatile/1186528#1186528Comment by Daniel on Interlocked and volatileDaniel2009-07-27T05:18:37Z2009-07-27T05:18:37ZWhere I should replace 0 with a value which my variable will never be?