see for dotnet questions
Collapse
This topic is closed.
X
X
-
ramuTags: None
-
Ben Voigt [C++ MVP]
Re: see for dotnet questions
ramu wrote:
This is not a csharp group, please take your C# spam elsewhere.
C# Interview Questions and Answers8
Can I define a type that is an alias of another type (like typedef in C++)? Not exactly. You can create an alias within a single file with t...
C# Interview Questions and Answers7
From a versioning perspective, what are the drawbacks of extending an interface as opposed to extending a class? With regard to versioning, ...
C# Interview Questions and Answers 6
How can I create a process that is running a supplied native executable (e.g., cmd.exe)? The following code should run the executable and wa...
C# Interview Questions and Answers 5
How do I create a multi language, multi file assembly? Unfortunately, this is currently not supported in the IDE. To do this from the comman...
C# Interview Questions and Answers 4
Is there regular expression (regex) support available to C# developers? Yes. The .NET class libraries provide support for regular expression...
C Interview Questions 3
So let’s say I have an application that uses MyApp.dll assembly, version 1.0.0.0. There is a security bug in that assembly, and I publish th...
C Interview Questions 2
How do you mark a method obsolete? [Obsolete] public int Foo() {...} or [Obsolete(\"This is a message describing why this method is obsolete...
C Interview Questions
http://allinterviewsbooks.blogspot.c...questions.html
Comment