Click here to Skip to main content
15,909,325 members
Home / Discussions / C#
   

C#

 
AnswerRe: clear history in browser Pin
Abhinav S22-May-10 0:26
Abhinav S22-May-10 0:26 
QuestionAbout Keyword in .NET Pin
Isaac Gordon21-May-10 22:12
Isaac Gordon21-May-10 22:12 
AnswerRe: About Keyword in .NET Pin
DaveyM6921-May-10 22:54
professionalDaveyM6921-May-10 22:54 
AnswerRe: About Keyword in .NET Pin
OriginalGriff21-May-10 23:07
mveOriginalGriff21-May-10 23:07 
GeneralRe: About Keyword in .NET Pin
Isaac Gordon21-May-10 23:21
Isaac Gordon21-May-10 23:21 
GeneralRe: About Keyword in .NET Pin
Pete O'Hanlon21-May-10 23:58
mvePete O'Hanlon21-May-10 23:58 
GeneralRe: About Keyword in .NET Pin
OriginalGriff22-May-10 0:09
mveOriginalGriff22-May-10 0:09 
GeneralRe: About Keyword in .NET Pin
harold aptroot22-May-10 0:24
harold aptroot22-May-10 0:24 
It's the other way around, they can be used with .NET 2.0 (see below), but they can not be used (AFAIK) with VS05 because the version of the compiler it uses doesn't understand them. (unless you use custom build magic maybe)


Code to use extension methods with .NET 2.0:
C#
namespace System.Runtime.CompilerServices
{
    [AttributeUsage(AttributeTargets.Method | AttributeTargets.Class | AttributeTargets.Assembly)]
    public sealed class ExtensionAttribute : Attribute
    {
        public ExtensionAttribute() { }
    }
}

GeneralRe: About Keyword in .NET Pin
OriginalGriff22-May-10 0:35
mveOriginalGriff22-May-10 0:35 
GeneralRe: About Keyword in .NET Pin
Isaac Gordon22-May-10 0:55
Isaac Gordon22-May-10 0:55 
GeneralRe: About Keyword in .NET Pin
Pete O'Hanlon22-May-10 2:10
mvePete O'Hanlon22-May-10 2:10 
GeneralRe: About Keyword in .NET Pin
OriginalGriff22-May-10 2:24
mveOriginalGriff22-May-10 2:24 
AnswerRe: About Keyword in .NET Pin
Abhinav S22-May-10 0:28
Abhinav S22-May-10 0:28 
QuestionInserting multiple IDs in Items table but the same ID should go into MasterRequest table just once. Pin
Omar Akhtar 200921-May-10 20:51
Omar Akhtar 200921-May-10 20:51 
AnswerRe: Inserting multiple IDs in Items table but the same ID should go into MasterRequest table just once. Pin
Mohsiul Haque21-May-10 22:46
Mohsiul Haque21-May-10 22:46 
GeneralRe: Inserting multiple IDs in Items table but the same ID should go into MasterRequest table just once. Pin
Omar Akhtar 200922-May-10 1:57
Omar Akhtar 200922-May-10 1:57 
GeneralIt Works! PinPopular
Roger Wright21-May-10 18:33
professionalRoger Wright21-May-10 18:33 
GeneralRe: It Works! Pin
Luc Pattyn21-May-10 22:36
sitebuilderLuc Pattyn21-May-10 22:36 
GeneralRe: It Works! Pin
Roger Wright22-May-10 4:20
professionalRoger Wright22-May-10 4:20 
GeneralRe: It Works! Pin
Luc Pattyn22-May-10 4:30
sitebuilderLuc Pattyn22-May-10 4:30 
GeneralRe: It Works! Pin
DaveyM6921-May-10 22:46
professionalDaveyM6921-May-10 22:46 
GeneralRe: It Works! Pin
Roger Wright22-May-10 4:23
professionalRoger Wright22-May-10 4:23 
GeneralRe: It Works! Pin
Roger Wright27-May-10 16:55
professionalRoger Wright27-May-10 16:55 
GeneralRe: It Works! Pin
DaveyM6928-May-10 8:47
professionalDaveyM6928-May-10 8:47 
GeneralRe: It Works! Pin
Roger Wright28-May-10 15:45
professionalRoger Wright28-May-10 15:45 

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.