Lucas
|
Registered User
|
Software developer, C# .NET.
|
|
1d |
comment |
How to implement WiX installer upgrade? note that this will remove any version installed, even if it is newer than the one you are trying to install |
|
1d |
revised |
Background Intelligent Transfer Service In C# edited tags |
|
2d |
comment |
How can I format a nullable DateTime with ToString()? The behaviour with ToString("yy...") is defined if the instance is null, because GetValueOrDefault() will return DateTime.MinValue |
|
2d |
comment |
Initialize Dictionary in .Net 2.0 the requirement is C# 3.0, not .NET 3.5, because it works (with the C# 3.0 compiler) even if targeting .Net 2.0 |
|
Nov 29 |
awarded | ● Necromancer |
|
Nov 27 |
accepted | Drag and drop files into VS 2008 in Win 7 |
|
Nov 27 |
comment |
Drag and drop files into VS 2008 in Win 7 well, there you go :) |
|
Nov 27 |
answered | Drag and drop files into VS 2008 in Win 7 |
|
Nov 27 |
comment |
Drag and drop files into VS 2008 in Win 7 Correct. My question is, why are you all running Visual Studio elevated (as admin)? I know in some cases it is required, but not always. |
|
Nov 19 |
comment |
How to Pivot IEnumerable<T> can you provide a code sample? |
|
Nov 1 |
answered | Can you pass an ‘expanded’ array to a function in C# like in ruby? |
|
Nov 1 |
comment |
How many possible URLs can you make with the following characters? it's neither permutations nor combinations, since the characters can be repeated several times. |
|
Oct 31 |
comment |
Random.Next returns always the same values i think with this range it can also return 1 and they only want 0 and -1? |
|
Oct 30 |
answered | Get Birthday reminder Linq Query ignoring year. |
|
Oct 30 |
comment |
Get Birthday reminder Linq Query ignoring year. Also, what will happen when DateTime.Now is in last 20 days of the year? Will you find birthdays coming up in January of the next year? |
|
Oct 30 |
comment |
Get Birthday reminder Linq Query ignoring year. You can't assign a value to DateTime.Year like this because it is a read-only property and DateTime is an immutable type. What you can do is create a new DateTime with the values you want: var birthday = new DateTime(DateTime.Now.Year, actualBirthday.Month, actualBirthday.Day; |
|
Oct 29 |
comment |
What is the difference between lambdas and delegates in the .NET Framework? You mean lambdas are like simplified anonymous methods (not delegate). Like methods (anonymous or not), they can be assigned to a delegate variable. |
|
Oct 26 |
answered | LINQ for Javascript (JSON,Arrays, DOM)? |
|
Oct 26 |
comment |
CSharpCodeProvider seems to be stuck at .NET 2.0, how do I get new features? No, they wouldn't. You want C# 3.0 language features, not (necessarily) the .NET framework 3.5 class library. One does not require the other. |
|
Oct 23 |
answered | Extension method for IDictionary<t, k> : The type arguments for method cannot be inferred from the usage |
|
Oct 23 |
comment |
C# Operators and readability see Petrotta's answer above: stackoverflow.com/questions/1615800/… |
|
Oct 23 |
comment |
C# Operators and readability or make it generic: In<T>(this T value, params T[] values)
|
|
Oct 23 |
comment |
What Happened to ASP.Net Mobile Web Forms? Since they were posted in a blog, I would think they are not officially supported. |
|
Oct 23 |
answered | Should i use ISO 3166 country codes (US) or culture codes (en-US) ? |
|
Oct 23 |
answered | C# video input routines |
|
Oct 23 |
answered | Recommended Post-SP1 Visual Studio 2008 Hotfixes |
|
Oct 23 |
comment |
Recommended Post-SP1 Visual Studio 2008 Hotfixes .. and KB971092 |
|
Oct 23 |
comment |
Recommended Post-SP1 Visual Studio 2008 Hotfixes ... and KB971092 |
|
Oct 17 |
comment |
Is there a way to merge pdb files with ilmerge? /ndebug will merge several pdb's into one, just as with the assemblies. The question is how to merge the assemblies with the pdb files, so it is all one single file. |
|
Oct 11 |
comment |
How to bind Window background to a theme’s Window background color? i get white brackground from this, but following that suggestion, you could try SystemColors.ControlBrush, SystemColors.ControlDarkBrush, etc |
|
Oct 11 |
comment |
How do I install XamlPad? apparently the link was updated :) |
|
Oct 9 |
comment |
why do we prefer ? to ?? operator in c#? @divo: well it's the only ternary operator in C# :P |
|
Oct 7 |
revised |
C#, Windows Forms, Best/min fit window to contents added 71 characters in body |
|
Oct 7 |
answered | C#, Windows Forms, Best/min fit window to contents |
|
Oct 5 |
answered | Render HTML as an Image |
|
Oct 2 |
awarded | ● Yearling |
|
Sep 30 |
comment |
System.Data.OracleClient requires Oracle client software version 8.1.7 thanks! i had this problem while deploying to production servers and searched around and found your answer. S.O. works! |
|
Sep 24 |
comment |
Why is implicit conversion allowed from superclass to subclass? @HC: a = b does not "convert" the HarleyDavidson into a Motorcycle. "a" and "b" will both be references to the same object, but "b" will will be able to acces the HarleyDavidson members and "a" will only be able to access the Motorcycle members. The actual object will still be a HarleyDavidson. |
|
Sep 24 |
revised |
Why is implicit conversion allowed from superclass to subclass? edited tags |
|
Sep 10 |
comment |
Entity Framework T-Sql “having” Equivalent grouped.Any() would be used for Count() > 0, not Count() > 1 |
|
Sep 1 |
comment |
Convince me to move to .net 3.5 (from 2.0) SaveButton.Click += (sender, e) => this.Save(); SaveButton.Click += delegate { this.Save(); }; |
|
Aug 27 |
comment |
C# - Location of Using Statements but why is this the recommended approach? |
|
Aug 27 |
comment |
Automatic properties and Nullable types - are they incompatible? Is this LINQ to SQL or LINQ to Entities? I just tried this code in L2S and it worked fine, converting DBNull to null with no problem. |
|
Aug 27 |
comment |
Help required to optimize LINQ query Re compiling the query: The query is still compiled at run time, not at compile time. This only helps if you will be using the same query many times, since you can cache the compiled query and reuse it. |
|
Aug 27 |
answered | Reposity pattern using linq |
|
Aug 26 |
comment |
How can I make sure that FirstOrDefault<KeyValuePair> has returned a value +1, KeyValuePair is a value type (struct), not a reference type (class) or a nullable value type, so it cannot be null. |
|
Aug 26 |
comment |
C# 2k8 reduce memory usage (simple app takes 10 MB) btw, what Mehrdad meant with "not all of 10MB is private memory" is that part of those 10MB are shared among several applications. |
|
Aug 24 |
answered | Can you explain this bizarre crash in the .NET runtime? |
|
Aug 16 |
revised |
C# .NET 3.0/3.5 features in 2.0 using Visual Studio 2008 specified use of lambdas |
|
Jul 20 |
accepted | Hosting IE 8 In WinForms and Opening a PDF |
