0
votes
XPATHS and Default Namespaces
The issue is that an element without a namespace is declared to be in the NULL namespace - therefore if //foo matched against the namespace you consider to be the 'default' there would be no way to …
4
votes
C# String output: format or concat?
Generally I prefer the former, as especially when the strings get long it can be much easier to read.
The other benefit is I believe one of performance, as the latter actually performs 2 st …
1
vote
Non Public Members for C# Interfaces
You can hide the implementation of an interface by explicitly stating the interface name before the method name:
public interface IInterface
{
public void Method();
}
public clas …
0
votes
C# String output: format or concat?
Oh, and just for completeness, the following is a few ticks faster than normal concatenation:
Console.WriteLine(String.Concat(p.FirstName," ",p.LastName));
…
10
votes
C# String output: format or concat?
Oh dear - after reading one of the other replies I tried reversing the order of the operations - so performing the concatenation first, then the String.Format...
Bill Gates
Console. …
1
vote
Enforce Attribute Decoration of Classes/Methods
You can write unit tests to check for this kind of thing - it basically uses reflection.
Given the fact this is possible I guess it would also be possible to write a FxCop rule, but I've ne …
0
votes
How to find an implementation of a C# interface in the current assembly with a specific name?
Well Assembly.CreateInstance would seem to be the way to go - the only problem with this is that it needs the fully qualified name of the type, i.e. including the namespace.
…
3
votes
Generics in c# & accessing the static members of T
Do access a member of a specific class or interface you need to use the Where keyword and specify the interface or base class that has the method.
In the above instance TryParse does not co …
37
votes
Is there an easy way to create ordinals in C#?
This page gives you a complete listing of all custom numerical formatting rules:
http://msdn.microsoft.com/en- …
1
vote
Is there a way to make a constructor only visible to a parent class in C#?
You can make the sub classes child classes, something like this:
public abstract class AbstractClass
{
public static AbstractClass MakeAbstractClass(string args)
{
i …
2
votes
Best way to replace tokens in a large text template
If you are doing multiple replaces on large strings then it might be better to use StringBuilder.Replace(), as the usual performance issues with strings will appear.
…
1
vote
Loading assemblies and its dependencies
You can use the <probing> element in a manifest file to tell the Runtime to look in different directories for its assembly files.
…
0
votes
How do I extract/insert text into RTF string in C#
It depends on what you mean by 'better'. You are already using the simplest and easiest way of doing it.
…
5
votes
Easiest way to convert a URL to a hyperlink in a C# string?
Regular expressions are probably your friend for this kind of task:
Regex r = new Regex("(http://[^ ]+)");
myString = r.Replace(myString, "<a href=\"$1\">$1</a>");
…
1
vote
C# generic constraint for only integers
There is no single interface or base class that they all inherit (that is not also inherited by other classes) so the simple answer is no.
I do wonder why this is an issue though. What are …
