Click here to Skip to main content
15,913,610 members
Home / Discussions / C#
   

C#

 
GeneralRe: Comparing Two PictureBox Pin
gamer112725-Nov-09 8:50
gamer112725-Nov-09 8:50 
GeneralRe: Comparing Two PictureBox Pin
harold aptroot25-Nov-09 9:01
harold aptroot25-Nov-09 9:01 
GeneralRe: Comparing Two PictureBox Pin
OriginalGriff25-Nov-09 10:39
mveOriginalGriff25-Nov-09 10:39 
GeneralRe: Comparing Two PictureBox Pin
gamer112725-Nov-09 18:29
gamer112725-Nov-09 18:29 
GeneralRe: Comparing Two PictureBox Pin
OriginalGriff25-Nov-09 21:58
mveOriginalGriff25-Nov-09 21:58 
AnswerRe: Comparing Two PictureBox Pin
I Believe In GOD25-Nov-09 9:07
I Believe In GOD25-Nov-09 9:07 
QuestionToo many generics in code. Pin
CaptainSeeSharp25-Nov-09 7:48
CaptainSeeSharp25-Nov-09 7:48 
AnswerRe: Too many generics in code. Pin
Paulo Zemek25-Nov-09 7:57
Paulo Zemek25-Nov-09 7:57 
If your classes are not sealed, you can create a derived class that points to the most used case.

For example:
public sealed class List:
List<object>
{
}

(the List<T> must not be sealed, the new class can be sealed).


Or, at the unit where you must use the type a lot, you can create a using.
For example:
using MyClass = System.Collections.Generic.List<string>

The main problem with this case is that when you declare a using clause you must always use the full path of every type.
GeneralRe: Too many generics in code. [modified] Pin
CaptainSeeSharp25-Nov-09 8:18
CaptainSeeSharp25-Nov-09 8:18 
AnswerRe: Too many generics in code. Pin
Member 218499725-Nov-09 10:07
Member 218499725-Nov-09 10:07 
GeneralRe: Too many generics in code. Pin
CaptainSeeSharp25-Nov-09 10:44
CaptainSeeSharp25-Nov-09 10:44 
AnswerRe: Too many generics in code. Pin
PIEBALDconsult25-Nov-09 12:15
mvePIEBALDconsult25-Nov-09 12:15 
GeneralRe: Too many generics in code. Pin
Lutosław25-Nov-09 13:23
Lutosław25-Nov-09 13:23 
GeneralRe: Too many generics in code. Pin
PIEBALDconsult25-Nov-09 15:34
mvePIEBALDconsult25-Nov-09 15:34 
AnswerRe: Too many generics in code. Pin
Gideon Engelberth25-Nov-09 12:20
Gideon Engelberth25-Nov-09 12:20 
GeneralRe: Too many generics in code. Pin
CaptainSeeSharp25-Nov-09 13:50
CaptainSeeSharp25-Nov-09 13:50 
QuestionDrawing Windows window Pin
cdpace25-Nov-09 7:25
cdpace25-Nov-09 7:25 
AnswerRe: Drawing Windows window Pin
Paulo Zemek25-Nov-09 8:03
Paulo Zemek25-Nov-09 8:03 
GeneralRe: Drawing Windows window Pin
cdpace25-Nov-09 10:31
cdpace25-Nov-09 10:31 
GeneralRe: Drawing Windows window Pin
Paulo Zemek25-Nov-09 11:14
Paulo Zemek25-Nov-09 11:14 
QuestionVS integrated designer Pin
careylin25-Nov-09 5:01
careylin25-Nov-09 5:01 
AnswerRe: VS integrated designer Pin
avigodse26-Nov-09 19:11
professionalavigodse26-Nov-09 19:11 
Questionbenifit of string constructor Pin
Member 225007225-Nov-09 3:25
Member 225007225-Nov-09 3:25 
AnswerRe: benifit of string constructor Pin
dan!sh 25-Nov-09 3:26
professional dan!sh 25-Nov-09 3:26 
AnswerRe: benifit of string constructor Pin
Simon P Stevens25-Nov-09 4:19
Simon P Stevens25-Nov-09 4:19 

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.