-2
votes
Read binary file into a struct C#
Use serialization. The samples for BinaryFormatter will show you how. …
0
votes
Searching directories for tons of files?
None. .NET relies on underlying Windows API calls that really, really hate that amount of files themselves.
As Ronnie says: split them up. …
0
votes
Interview Questions for an Intern
One of my favorites (that I was asked, and did not get quite right, but I was still hired):
In a single-elimination sports tournament with 16 teams, how many games do you need to play to ha …
1
vote
How to reference to multiple version assembly
Is this what you need?
http://www.infosysblogs.com/microsoft/2007/04/loading_multi …
76
votes
0
votes
Lingering assembly dependency in C# .NET
grep your project folder. It could be a hidden reference in your project, or a project that your project references. Cleanse with Notepad if needed.
…
3
votes
XPATHS and Default Namespaces
You need local-name():
http://www.w3.org/TR/xpath#function-local-name
To crib from …
1
vote
Browse for a directory in C#
It's not heavy-weight at all. Crude, yes, but it's much better than rolling your own.
…
0
votes
2
votes
Interview question on C# and VB.net similarities/differences
I love C# to death, but I envy VB.NET's optional parameters. Office automation in C# is so very, very painful.
…
14
votes
What are the pros and cons to keeping SQL in Stored Procs versus Code
The performance advantage for stored procedures is often negligable.
More advantages for stored procedures:
Prevent reverse engineering (if created With Encryption, of course) …
8
votes
Is there an easy way to create ordinals in C#?
You'll have to roll your own. From the top of my head:
public static string Ordinal(this int number)
{
var work = number.ToString();
if (number == 11 || number == 12 || number = …
1
vote
.NET: What are attributes?
Attributes are like metadata applied to classes, methods or assemblies.
They are good for any number of things (debugger visualization, marking things as obsolete, marking things as seriali …
0
votes
VS.NET Application Diagrams
Yes, and no, it's not very useful in my opinion. It's not very stable, it's easy to get out of sync, and the "look how fast I generate this" advantage is virtually nil when compared to more mundane …
0
votes
Path Display in Label
Does this do what you want?
http://www.codeproject.com/KB/vb/NewPathCompactPath.aspx
…
