Tagged Questions
28
votes
9answers
3k views
.NET - How can you split a “caps” delimited string into an array?
How do I go from this string: "ThisIsMyCapsDelimitedString"
...to this string: "This Is My Caps Delimited String"
Fewest lines of code in VB.net is preferred but C# is also welcome.
Cheers!
2
votes
3answers
72 views
Why Hashtable is not PascalCase?
I strongly try to follow general rules in coding styles. But when i look at .NET, i see that some of classes doesn't match PascalCasing rules. One of them is Hashtable and the other one which i ...
0
votes
2answers
56 views
Pascal Case in C# properties
Which one do you choose and why:
public class User
{
public long UserID { get; set; }
}
public class User
{
public long UserId { get; set; }
}
And also as parameters:
public void ...