Click here to Skip to main content
15,915,328 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: How to avoid .Net exe from decompilation Pin
hammerstein0528-Apr-10 8:39
hammerstein0528-Apr-10 8:39 
GeneralRe: How to avoid .Net exe from decompilation Pin
harold aptroot28-Apr-10 8:44
harold aptroot28-Apr-10 8:44 
AnswerRe: How to avoid .Net exe from decompilation Pin
PIEBALDconsult27-Apr-10 13:31
mvePIEBALDconsult27-Apr-10 13:31 
AnswerRe: How to avoid .Net exe from decompilation Pin
Peace ON29-Apr-10 1:23
Peace ON29-Apr-10 1:23 
QuestionSGML parser for .NET Pin
Dimitri Witkowski27-Apr-10 8:16
Dimitri Witkowski27-Apr-10 8:16 
QuestionARC GIS Integration Query Pin
mauricemcse27-Apr-10 6:28
mauricemcse27-Apr-10 6:28 
QuestionInheritance vs Generics Pin
Stryder_126-Apr-10 5:41
Stryder_126-Apr-10 5:41 
AnswerRe: Inheritance vs Generics [modified] Pin
Not Active26-Apr-10 6:08
mentorNot Active26-Apr-10 6:08 
Generics and Inheritance are two completely different animals. Inheritance is of course used for OO where you can have a base class with some characteristics and actions that can be used in any derived classes. The classical example is and Animal base class and Cat or Dog derived classes.

Generics give you the ability to write one class or method that can execute actions in a generic way. For instance;

public class MathOperations
{
   public T Add<T>(T x, T y)
   {
     return x + y;
   }
}


In this case you can call Add with int, float, decimal, etc. and it will add the values together. Otherwise you would need to create an override for the Add method that takes, int, float, double, etc., much more coding.

I know the language. I've read a book. - _Madmatt

GeneralRe: Inheritance vs Generics Pin
harold aptroot27-Apr-10 6:34
harold aptroot27-Apr-10 6:34 
GeneralRe: Inheritance vs Generics Pin
Not Active27-Apr-10 7:12
mentorNot Active27-Apr-10 7:12 
AnswerRe: Inheritance vs Generics Pin
Zeeshan Amjad26-Apr-10 6:22
Zeeshan Amjad26-Apr-10 6:22 
AnswerRe: Inheritance vs Generics Pin
T M Gray26-Apr-10 11:59
T M Gray26-Apr-10 11:59 
AnswerRe: Inheritance vs Generics Pin
PIEBALDconsult27-Apr-10 13:40
mvePIEBALDconsult27-Apr-10 13:40 
QuestionVS 2010 Compiling Mixed Frameworks. Pin
gscheek26-Apr-10 2:59
gscheek26-Apr-10 2:59 
AnswerRe: VS 2010 Compiling Mixed Frameworks. Pin
Luc Pattyn26-Apr-10 3:13
sitebuilderLuc Pattyn26-Apr-10 3:13 
GeneralRe: VS 2010 Compiling Mixed Frameworks. Pin
gscheek26-Apr-10 3:16
gscheek26-Apr-10 3:16 
GeneralRe: VS 2010 Compiling Mixed Frameworks. Pin
Luc Pattyn26-Apr-10 3:47
sitebuilderLuc Pattyn26-Apr-10 3:47 
GeneralRe: VS 2010 Compiling Mixed Frameworks. Pin
Not Active26-Apr-10 4:32
mentorNot Active26-Apr-10 4:32 
AnswerRe: VS 2010 Compiling Mixed Frameworks. Pin
Abhinav S28-Apr-10 20:52
Abhinav S28-Apr-10 20:52 
GeneralRe: VS 2010 Compiling Mixed Frameworks. [modified] Pin
gscheek29-Apr-10 2:33
gscheek29-Apr-10 2:33 
GeneralRe: VS 2010 Compiling Mixed Frameworks. Pin
Abhinav S30-Apr-10 6:41
Abhinav S30-Apr-10 6:41 
GeneralRe: VS 2010 Compiling Mixed Frameworks. Pin
gscheek30-Apr-10 7:06
gscheek30-Apr-10 7:06 
NewsXAML and BAML obfuscator available [modified] Pin
chrildk26-Apr-10 2:53
chrildk26-Apr-10 2:53 
AnswerRe: XAML and BAML obfuscator available Pin
Peace ON27-Apr-10 21:24
Peace ON27-Apr-10 21:24 
GeneralRe: XAML and BAML obfuscator available Pin
chrildk28-Apr-10 1:37
chrildk28-Apr-10 1:37 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.