Click here to Skip to main content
15,901,283 members
Home / Discussions / C#
   

C#

 
QuestionHow to enable gestures in windows 8 touch ultrabook Pin
ashishguptajhansi8-Aug-12 2:28
ashishguptajhansi8-Aug-12 2:28 
AnswerRe: How to enable gestures in windows 8 touch ultrabook Pin
Richard MacCutchan8-Aug-12 4:05
mveRichard MacCutchan8-Aug-12 4:05 
AnswerRe: How to enable gestures in windows 8 touch ultrabook Pin
BillWoodruff9-Aug-12 8:09
professionalBillWoodruff9-Aug-12 8:09 
QuestionNeed to improve oops concepts Pin
Alagiri.periyasamy@merrillcorp.com8-Aug-12 1:10
Alagiri.periyasamy@merrillcorp.com8-Aug-12 1:10 
AnswerRe: Need to improve oops concepts Pin
Pete O'Hanlon8-Aug-12 1:22
mvePete O'Hanlon8-Aug-12 1:22 
AnswerRe: Need to improve oops concepts Pin
Alan Balkany8-Aug-12 4:31
Alan Balkany8-Aug-12 4:31 
AnswerRe: Need to improve oops concepts Pin
wizardzz8-Aug-12 5:29
wizardzz8-Aug-12 5:29 
QuestionList all the open ports Pin
sarang_k7-Aug-12 20:41
sarang_k7-Aug-12 20:41 
AnswerRe: List all the open ports Pin
Wayne Gaylard7-Aug-12 20:49
professionalWayne Gaylard7-Aug-12 20:49 
GeneralRe: List all the open ports Pin
Pete O'Hanlon8-Aug-12 1:36
mvePete O'Hanlon8-Aug-12 1:36 
GeneralRe: List all the open ports Pin
Wayne Gaylard8-Aug-12 3:33
professionalWayne Gaylard8-Aug-12 3:33 
AnswerRe: List all the open ports PinPopular
Ed Hill _5_7-Aug-12 23:17
Ed Hill _5_7-Aug-12 23:17 
GeneralRe: List all the open ports Pin
OriginalGriff8-Aug-12 0:18
mveOriginalGriff8-Aug-12 0:18 
AnswerRe: List all the open ports PinPopular
Pete O'Hanlon8-Aug-12 1:46
mvePete O'Hanlon8-Aug-12 1:46 
AnswerRe: List all the open ports Pin
jschell10-Aug-12 12:31
jschell10-Aug-12 12:31 
Generala better way to make, and populate, a List<Type> ? Pin
BillWoodruff7-Aug-12 16:34
professionalBillWoodruff7-Aug-12 16:34 
GeneralRe: a better way to make, and populate, a List<Type> ? Pin
PIEBALDconsult7-Aug-12 16:54
mvePIEBALDconsult7-Aug-12 16:54 
GeneralRe: a better way to make, and populate, a List ? Pin
BillWoodruff7-Aug-12 18:06
professionalBillWoodruff7-Aug-12 18:06 
GeneralRe: a better way to make, and populate, a List ? Pin
BillWoodruff9-Aug-12 8:35
professionalBillWoodruff9-Aug-12 8:35 
GeneralRe: a better way to make, and populate, a List ? Pin
PIEBALDconsult9-Aug-12 12:16
mvePIEBALDconsult9-Aug-12 12:16 
GeneralRe: a better way to make, and populate, a List ? Pin
SledgeHammer017-Aug-12 18:58
SledgeHammer017-Aug-12 18:58 
GeneralRe: a better way to make, and populate, a List ? Pin
PIEBALDconsult8-Aug-12 3:32
mvePIEBALDconsult8-Aug-12 3:32 
GeneralRe: a better way to make, and populate, a List ? Pin
DaveyM698-Aug-12 23:10
professionalDaveyM698-Aug-12 23:10 
Response to edit:
I think what he meant is the using directives are not required as everything can be written in full i.e.
C#
private static System.Collections.Generic.List<System.Type> OkToModify = 
    new System.Collections.Generic.List<System.Type> 
{ 
    typeof(System.Windows.Forms.CheckBox),
    typeof(System.Windows.Forms.TextBox),
    typeof(System.Windows.Forms.Button), 
    typeof(System.Windows.Forms.Panel),
    typeof(System.Windows.Forms.Label)
};

Personally, I think this is horrible and I always use usings wherever possible, but some will disagree...
Dave

Binging is like googling, it just feels dirtier.
Please take your VB.NET out of our nice case sensitive forum.
Astonish us. Be exceptional. (Pete O'Hanlon)

BTW, in software, hope and pray is not a viable strategy. (Luc Pattyn)



GeneralRe: a better way to make, and populate, a List ? Pin
Pete O'Hanlon9-Aug-12 0:51
mvePete O'Hanlon9-Aug-12 0:51 
QuestionGet Variable Type from String Pin
eddieangel7-Aug-12 11:16
eddieangel7-Aug-12 11:16 

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.