DCSIMG
Visual Studio - Tamir Shlomi's Blog

Tamir Shlomi's Blog

Welcome to Tamir Shlomi's blog. All about .NET, OOP and SQL server

Browse by Tags

All Tags » Visual Studio (RSS)
Generic List<T> Using svcutil.exe
When using the svcutil.exe in order to create WCF proxy, any reflected collection will be converted into System.Array by default. Good to know that this can be controlled using the svcutil.exe. You can define the output data type for collections using the "/ct:" keyword. For example, generating generic list collection (System.Collections.Generic.List<T>) will be done like that: svcutil.exe http://localhost/Services/Sample.svc?wsdl /ct:System.Collections.Generic.List`1 This brings...
Visual Studio Tips And Tricks
Visual Studio .NET Tips & Tricks is a very useful e-book you can download for free. Justifying its reputation, it contains a lot of useful tips and tricks about advanced using the IDE which makes coding much more comfortable and effective. I think that even experienced Visual Studio user will find it useful. Please note: even though it’s refers to the Visual Studio versions before the VS2008 it is still helpful as the most is the same across all the versions. As I mentioned before, it's for...
OwnerAttribute Or: How To Own Visual Studio 2008 Unit Test
When working on a large project with a lot of test methods, that each one of them might be under the responsibility of another developer, finding your own unit test methods in the endless list is just like finding a needle in a haystack. This can be easily become much simple. When creating unit test for a process, Visual Studio generates unit test method decorated with the TestMethodAttribute. Now, to “own” the unit test, just add new attribute named “ OwnerAttribute ” which specify the person responsible...