0
votes
2answers
29 views
.NET Framework: Argument type ‘uint’ is not CLS-compliant on P/Invoke
Hello!
It is safe to ignore this warning?
Argument type 'uint' is not CLS-compliant
I'm developing a Compact Framework applicatin and I have a lot of P/Invoke and I have to use …
6
votes
4answers
199 views
Why there is no something like IMonad<T> in upcoming .NET 4.0
... with all those new (and not so new if we count IEnumerable) monad-related stuff?
interface IMonad<T>
{
SelectMany/Bind();
Return/Unit();
}
That would allow to …
2
votes
5answers
87 views
What is your recommendation for a good book on the .NET CLR and CIL?
Do you know any good book about the workings of the CLR, the .NET Framework and CIL as opposed to any specific .NET language?
1
vote
4answers
200 views
Moving from 32-bit to 64-bit development, need clarification regarding .net framework and platform
Hello,
Quick background: I develop C# in VS2008 under .net 3.5 on a Vista-x64 machine
I recently switched to Vista-x64 and after some searching, I still feel that I do not comple …
1
vote
1answer
58 views
Which version of the .net framework will Sharepoint 2010 use?
Now that the Sharepoint conference has started and atleast some of the NDA restrictions have been lifted.
I was wondering which version for the .net framework Sharepoint 2010 will …
0
votes
4answers
94 views
.net framework client profile— What if the Dll I Need is Not There?
I am thinking about going into .net framework client profile, but currently I am depending on System.Design.dll, which is not inside the profile.
I can, of course, manually distri …
2
votes
7answers
211 views
Naming guidelines with C#.
Hello!
I have this class:
class DoSomething
{
private int timesDone;
...
}
Which is the right way to named variable 'timesDone'?
Sometimes I see named as m_timesDone. …
