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

.NET (Core and Framework)

 
GeneralRe: Fatal Execution Engine Error while trying to run .net exe Pin
surender.m22-Mar-11 23:52
surender.m22-Mar-11 23:52 
GeneralRe: Fatal Execution Engine Error while trying to run .net exe Pin
Pete O'Hanlon23-Mar-11 0:01
mvePete O'Hanlon23-Mar-11 0:01 
GeneralRe: Fatal Execution Engine Error while trying to run .net exe Pin
surender.m23-Mar-11 0:30
surender.m23-Mar-11 0:30 
GeneralRe: Fatal Execution Engine Error while trying to run .net exe Pin
Pete O'Hanlon23-Mar-11 0:42
mvePete O'Hanlon23-Mar-11 0:42 
AnswerRe: Fatal Execution Engine Error while trying to run .net exe Pin
Prasanta_Prince15-Apr-11 0:17
Prasanta_Prince15-Apr-11 0:17 
QuestionBest practices on Generics (in .NET 4.0)? Pin
Sander Rossel22-Mar-11 11:09
professionalSander Rossel22-Mar-11 11:09 
AnswerRe: Best practices on Generics (in .NET 4.0)? Pin
DaveyM6922-Mar-11 12:07
professionalDaveyM6922-Mar-11 12:07 
GeneralRe: Best practices on Generics (in .NET 4.0)? Pin
Sander Rossel24-Mar-11 1:15
professionalSander Rossel24-Mar-11 1:15 
Not sure what you mean, but if you mean that the following...
VB
Public Class Something(Of T1, T2)

   Public Function GetSomething(ByVal var As T1) As T2
      ' Get Something
   End Function

End Class

Public Class Form1

   Private _field As Something(Of SomeClass, SomeOtherClass)

   Sub Me_Load(...) Handles Me.Load
      _field = New Something(Of SomeClass, SomeOtherClass)
      Dim var As SomeOtherClass = _field.GetSomething(New SomeClass)
   End Sub

End Class

...creates a couple of versions of SomeClass and SomeOtherClass I think you are wrong.
Actually I think the only instances of SomeClass and SomeOtherClass are the Class I pass to the Function and the Class that it returns (var). And of course I have an instance of the Something(Of T1, T2) Class.
Correct me if I am wrong Smile | :)

When there is no need for validation or event raising a non-auto property creates a lot of overhead Wink | ;)
It's an OO world.

GeneralRe: Best practices on Generics (in .NET 4.0)? Pin
DaveyM6924-Mar-11 5:21
professionalDaveyM6924-Mar-11 5:21 
GeneralRe: Best practices on Generics (in .NET 4.0)? Pin
Sander Rossel24-Mar-11 5:48
professionalSander Rossel24-Mar-11 5:48 
GeneralRe: Best practices on Generics (in .NET 4.0)? Pin
DaveyM6926-Mar-11 6:58
professionalDaveyM6926-Mar-11 6:58 
AnswerRe: Best practices on Generics (in .NET 4.0)? Pin
Luc Pattyn26-Mar-11 7:16
sitebuilderLuc Pattyn26-Mar-11 7:16 
GeneralRe: Best practices on Generics (in .NET 4.0)? Pin
Sander Rossel28-Mar-11 8:43
professionalSander Rossel28-Mar-11 8:43 
GeneralRe: Best practices on Generics (in .NET 4.0)? Pin
Rob Grainger25-Mar-11 5:18
Rob Grainger25-Mar-11 5:18 
QuestioncurrentElement.GetAttribute(VB.NET) Pin
Herboren21-Mar-11 10:10
Herboren21-Mar-11 10:10 
AnswerRe: currentElement.GetAttribute(VB.NET) Pin
davidnz22-Mar-11 23:32
davidnz22-Mar-11 23:32 
QuestionNew SDK for visual studio projects Pin
rodrigogroff18-Mar-11 9:39
rodrigogroff18-Mar-11 9:39 
AnswerRe: New SDK for visual studio projects Pin
Not Active18-Mar-11 9:49
mentorNot Active18-Mar-11 9:49 
GeneralRe: New SDK for visual studio projects Pin
rodrigogroff18-Mar-11 9:52
rodrigogroff18-Mar-11 9:52 
GeneralRe: New SDK for visual studio projects Pin
Not Active18-Mar-11 10:12
mentorNot Active18-Mar-11 10:12 
GeneralRe: New SDK for visual studio projects Pin
Richard MacCutchan18-Mar-11 10:45
mveRichard MacCutchan18-Mar-11 10:45 
GeneralRe: New SDK for visual studio projects Pin
rodrigogroff18-Mar-11 11:00
rodrigogroff18-Mar-11 11:00 
AnswerRe: New SDK for visual studio projects Pin
PIEBALDconsult18-Mar-11 19:15
mvePIEBALDconsult18-Mar-11 19:15 
QuestionSSH for File transfer Pin
byka16-Mar-11 1:53
byka16-Mar-11 1:53 
AnswerRe: SSH for File transfer Pin
Rick Shaub16-Mar-11 7:05
Rick Shaub16-Mar-11 7:05 

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.