Kyralessa

6,000
Reputation
824 views

Registered User

Name Kyralessa
Member for 1 year
Seen 35 mins ago
Website
Location St Louis, MO
Age 34
I do not like Resharper. I'm happy that you like it. I have tried it, and I don't like it. Now go away.
35m
answered Hidden Features of VB.NET?
39m
comment Hidden Features of VB.NET?
I can't fathom what would make people think that Select Case True is better than a plain old If. If you're using it like an If, just make it an If. Why obfuscate?
42m
comment Hidden Features of VB.NET?
This is a very useful thing to know, actually. Try typing this: Public Sub Stop It doesn't work, because Stop is a keyword. The brackets allow you to use Stop as your method name when it makes more sense than another name.
45m
comment Hidden Features of VB.NET?
The fact that Dim b(9) as byte creates an array with 10 places drives me mad. I understand why Microsoft did it, but that doesn't mean it was a good decision (and I say this as someone who likes VB .NET). Of course, it's not as awful as it could be because for most things I use collections instead of arrays anyhow.
50m
comment Hidden Features of VB.NET?
Static, used as in the examples above, allows a unique form of encapsulation: class-level variables that have method-level scope. Without it, you'd have to create a class-level variable that would be accessible to any class member, even if you're only using it in one method.
1h
comment Hidden Features of VB.NET?
Please don't use Select Case True. Just use an If statement.
20h
revised How can I get the DateTime for the Start of the Week?
Got rid of scrollbars
1d
answered When To Use C# vs C++ For Performance (London Stock Exchange)
2d
comment What do all these “Save DTS Package” options mean?
Which option is best for a package that I want to be able to edit afterwards?
2d
asked What do all these “Save DTS Package” options mean?
2d
revised Open a .BAS DTS Package in SQL 2000?
Improved link appearance
Nov
28
comment Solitaire game design
IF you're still around, AgentHunt, have a look at what I wrote below. I recognize the way you're developing, because it's how I started too. It's called object-oriented programming, which leads new programmers to think they're supposed to start by creating a bunch of objects and then string them together. My experience over the years has been that this just creates clutter. An object isn't useful to your program unless and until it does something.
Nov
28
accepted VS 2010 macro - select from here to there
Nov
27
answered What are the best code refactoring strategies ?
Nov
27
comment Examples of programmers being stupid
This does worse than "catch an exception and rethrow it without doing anything else." [throw;] rethrows an exception "without doing anything else." [throw ex;] throws ex at that point, which means the stack trace starts at that point. If you have A() calling B() calling C(), and C does a throw ex, all you'll see in the stack trace is A(), so you won't know where the error happened.
Nov
27
comment Cloning objects in C#
That's the same article the link in my answer points to.
Nov
23
awarded  Nice Answer
Nov
20
answered Solitaire game design
Nov
20
answered Using background worker with multiple classes in C#
Nov
20
revised If your software development team is not following any design methodology, what is that called?
Added link
Nov
19
answered C#: What Else Do You Use Besides DataSet
Nov
19
comment C#: What Else Do You Use Besides DataSet
"Heavyweight objects"? Does that term really have any meaning?
Nov
19
comment What is the name of this operator: “-->”?
If you're going to put it on an exam, make it a bonus question.
Nov
19
comment C# Speech Recognition - Is this what the user said?
Not sure why it didn't work for you; the code I posted came directly from a program I wrote and used, and it worked for me. Perhaps it's related to the culture settings on your system?
Nov
19
awarded  Nice Answer
Nov
19
comment The ProxyFactoryFactory was not configured.
For those using Castle ActiveRecord and getting the same error, as well as adding the reference to NHibernate.ByteCode.Castle.dll, you'll need to add this to your XML configuration file: <add key="proxyfactory.factory_class" value="NHibernate.ByteCode.Castle.ProxyFactoryFactory, NHibernate.ByteCode.Castle" />
Nov
18
answered When should we create a new method?
Nov
16
comment Most wanted feature for C# 4.0 ?
If you disagree with Rick Minerich, I think you ought to edit your answer to show how you'd (theoretically) declare the extension properties that would allow you to type 2.Minutes.Ago. I was taken aback by his comment, but after considering it, I agree with him. It seems like you'd have to have properties with different types on the get and set.
Nov
15
accepted C# - Why won’t a fullscreen winform app ALWAYS cover the taskbar?
Nov
12
comment What are common UI misconceptions and annoyances?
Who said these skins were good design? Most of them are hideous.
Nov
12
comment What are common UI misconceptions and annoyances?
As best I can tell, Java thinks it needs to tell you about its latest nifty update because every single damn time it updates, it wants to install the Yahoo Toolbar too. Sure, I didn't install it last time, but surely I want to install it this time.
Nov
11
comment Can I use GhostDoc to add documentation to an entire class or code file?
"sometimes they will provide good enough documentation that you don't need to make any adjustments" Based on my experience using GhostDoc and using libraries "commented" with it, I think instead of sometimes you meant to say never.
Nov
9
answered So I want to make a basic music visualizer in C# as practice. Is there a library that lets me handle sound files easily in C#?
Nov
5
awarded  Enlightened
Nov
5
accepted Can C# generics have a specific base type?
Nov
5
comment UserControl as an interface, but visible in the Designer
This is exactly the solution I proposed in my original question. As such, it's no help at all.
Nov
4
comment IObservable<T> in .NET Framework 4.0 Beta2
You're not making any sense, ControlFlow. Of course collections may be observable. But the fact that a collection may be observable doesn't mean that anything observable is a collection. There are plenty of generic interfaces and types in the CLI that aren't in System.Collections.Generic.
Nov
2
comment Why should my team adopt source control?
Probably that command will only work if we're using git.
Nov
1
comment How does Wikipedia avoid duplicate entries?
This is probably the most important way duplicates are avoided: The duplicate can't be added a dozen times, because after it's added once, it's redirected to the actual entry.
Oct
30
comment Is this a fair question to ask in a Software Engineering Interview, phase 1?
I didn't say it has commercial value. I said it's absurd, in an interview, to ask someone to do that. It's too much time. Get over yourself.
Oct
29
comment Using Static Constructor (Jon Skeet Brainteaser)
Well, what's the answer you're getting?
Oct
27
revised Awesome Visual Studio Macros
added 131 characters in body
Oct
27
comment Awesome Visual Studio Macros
What a strange choice for accepted answer.
Oct
22
revised Create Excel (.XLS and .XLSX) file from C#
added 159 characters in body
Oct
22
accepted WPF Grid vs Stackpanel
Oct
20
revised .NET: Unable to cast object to interface it implements
Wrapped to get rid of annoying scrollbars.
Oct
14
awarded  Popular Question
Oct
13
comment Do you have any recommended add-ons/plugins for Microsoft Visual Studio?
But if you're not supposed to leave what GhostDoc produces, then what's the point? If you hit /// in VS, you automatically get the template for everything in your method/property/whatever. The only thing you don't get is the mindless GhostDoc-produced comments.
Oct
10
comment Is this a fair question to ask in a Software Engineering Interview, phase 1?
I had an interview recently where I had to write code. But it wasn't complex code; it was simply firing up VS, creating a WinForms project, and creating a simple UI, an interface, an implementing class... It was just to weed out people who looked impressive on paper but had no actual knowledge. It was reasonable.
Oct
10
comment How could I transform some keypresses into other keypresses?
Well, you're certainly forthright about your intentions. I'll give you that.