11
votes
13answers
452 views
Should a c# class generate instances of itself?
I have a class that defines a CallRate type. I need to add the ability to create multiple instances of my class by reading the data from a file.
I added a static method to my class CallRate …
1
vote
3answers
1k views
Generate random enum in C# 2.0.
Could someone please point me toward a cleaner method to generate a random enum member. This works but seems ugly.
Thanks!
public T RandomEnum<T>()
{
string[] items …
1
vote
4answers
116 views
C# expression evaluates to a namespace
MSDN docs state "An expression is a fragment of code that can be evaluated to a single value, object, method, or namespace."
Could someone please explain what it means for an expression to …
2
votes
2answers
56 views
Pass ‘value type’ on stack by ref - memory footprint
What happens in memory when we pass a value type - which has been stored on the stack - by reference?
A temp value/pointer must be created somewhere to change the origninal value when the m …
2
votes
5answers
56 views
Validate constructor data
A sample class in "C# Class Desing Handbook" (pg 137) does not call the classes validation method for a specific field from inside the classes only constructor. So basically the sample class allows …
0
votes
C# Inheritance
Shouldn't we be fully qualifing our types in a class anyway? It was the mantra driven into my head while learning c++ anwyay.
…
1
vote
Should I agree to ban the “using” directive from my c# projects?
you can also use aliases...
using diagAlias = System.Diagnostics;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
…
0
votes
0
votes
Windows Mobile (C#) - Communicating between phone and PC
WIMO is working on WiFi to desktop support and may be done. Might be worth a look at the code either way.
home
…
