Click here to Skip to main content
15,907,687 members
Home / Discussions / C#
   

C#

 
AnswerRe: Download mail Pin
User 66588-Jul-08 6:04
User 66588-Jul-08 6:04 
QuestionDTSx [modified] Pin
Paresh Gujarathi8-Jul-08 5:42
Paresh Gujarathi8-Jul-08 5:42 
QuestionWhen to test concrete classes in TDD? Pin
Pawel Krakowiak8-Jul-08 5:19
Pawel Krakowiak8-Jul-08 5:19 
AnswerRe: When to test concrete classes in TDD? Pin
N a v a n e e t h8-Jul-08 16:39
N a v a n e e t h8-Jul-08 16:39 
AnswerRe: When to test concrete classes in TDD? Pin
N a v a n e e t h8-Jul-08 16:51
N a v a n e e t h8-Jul-08 16:51 
GeneralRe: When to test concrete classes in TDD? Pin
Pawel Krakowiak8-Jul-08 22:47
Pawel Krakowiak8-Jul-08 22:47 
Questionwebpage calling windows service Pin
adam_smith_20038-Jul-08 5:08
adam_smith_20038-Jul-08 5:08 
AnswerRe: webpage calling windows service Pin
Christian Graus8-Jul-08 5:19
protectorChristian Graus8-Jul-08 5:19 
GeneralRe: webpage calling windows service Pin
adam_smith_20038-Jul-08 5:25
adam_smith_20038-Jul-08 5:25 
GeneralRe: webpage calling windows service Pin
Christian Graus8-Jul-08 5:37
protectorChristian Graus8-Jul-08 5:37 
AnswerRe: webpage calling windows service Pin
PIEBALDconsult8-Jul-08 7:29
mvePIEBALDconsult8-Jul-08 7:29 
QuestionIdentifying CD "format" Pin
arronhuk8-Jul-08 4:49
arronhuk8-Jul-08 4:49 
Questionvarchar(50) or nvarchar(50)? Pin
mrcooll8-Jul-08 4:40
mrcooll8-Jul-08 4:40 
AnswerRe: varchar(50) or nvarchar(50)? Pin
Guffa8-Jul-08 4:50
Guffa8-Jul-08 4:50 
GeneralRe: varchar(50) or nvarchar(50)? Pin
Christian Graus8-Jul-08 5:18
protectorChristian Graus8-Jul-08 5:18 
JokeRe: varchar(50) or nvarchar(50)? Pin
Luc Pattyn8-Jul-08 6:10
sitebuilderLuc Pattyn8-Jul-08 6:10 
QuestionCustomizing a .NET setup dynamically Pin
orangeflow8-Jul-08 3:50
orangeflow8-Jul-08 3:50 
AnswerRe: Customizing a .NET setup dynamically Pin
Rutvik Dave8-Jul-08 8:28
professionalRutvik Dave8-Jul-08 8:28 
QuestionProblem in FontStyle property Pin
Krishnraj8-Jul-08 3:38
Krishnraj8-Jul-08 3:38 
AnswerRe: Problem in FontStyle property Pin
Luc Pattyn8-Jul-08 3:46
sitebuilderLuc Pattyn8-Jul-08 3:46 
AnswerRe: Problem in FontStyle property Pin
half-life8-Jul-08 3:51
half-life8-Jul-08 3:51 
GeneralRe: Problem in FontStyle property Pin
Krishnraj8-Jul-08 4:07
Krishnraj8-Jul-08 4:07 
GeneralRe: Problem in FontStyle property Pin
leppie8-Jul-08 4:12
leppie8-Jul-08 4:12 
AnswerRe: Problem in FontStyle property Pin
User 66588-Jul-08 4:17
User 66588-Jul-08 4:17 
QuestionHow can I pass Type to my generic class in runtime [modified] Pin
dasha_pl8-Jul-08 3:30
dasha_pl8-Jul-08 3:30 
Hi!
Please, help me! I would like to create List<t>, for myType in runtime(for example, Int32):

Type myType = Type.GetType("System.Int32");<br />
    List<myType> list = new List<myType>();<br />


- compiler is throwing errors:"The type or namespace name 'myType' could not be found (are you missing a using directive or an assembly reference?)"

How can I create such list for this type?

modified on Tuesday, July 8, 2008 9:42 AM

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.