Posts by Raoni Zacaron • 325 points
3 posts
-
0
votes3
answers884
viewsA: List of Exceptions
You can create your own Exception by inheriting from Exception, in it, you add an array of Exception or its Exception, and throw / catch yours. when to give the catch you can show all exceptions…
-
6
votes1
answer213
viewsQ: How to implement 'check in' in tfs 2012 only approved by the reviewer?
I would like to know if it is possible and how do I stop the Check In so that only the reviewer can upload the code, or that it is not possible without your permission. To ensure that cases in which…
-
16
votes5
answers14262
viewsQ: How to sort list with complex object by one of its properties?
I have a list of objects and I want to sort the list by one of the properties (Desc type string), how do I do this? public class Foo { public string Desc { get; set; } // Várias outras propriedades…