Click here to Skip to main content
15,894,291 members
Home / Discussions / C#
   

C#

 
GeneralRe: Regex.Remove Pin
Henry Minute10-Jul-09 10:09
Henry Minute10-Jul-09 10:09 
QuestionParse Parenthesis Block in String Pin
dataminers10-Jul-09 4:51
dataminers10-Jul-09 4:51 
AnswerRe: Parse Parenthesis Block in String Pin
J4amieC10-Jul-09 4:55
J4amieC10-Jul-09 4:55 
AnswerRe: Parse Parenthesis Block in String Pin
Henry Minute10-Jul-09 5:00
Henry Minute10-Jul-09 5:00 
GeneralRe: Parse Parenthesis Block in String Pin
dataminers10-Jul-09 5:20
dataminers10-Jul-09 5:20 
AnswerRe: Parse Parenthesis Block in String Pin
harold aptroot10-Jul-09 8:44
harold aptroot10-Jul-09 8:44 
Questioncan we create object of partial class Pin
Vivek Vijayan10-Jul-09 4:10
Vivek Vijayan10-Jul-09 4:10 
AnswerRe: can we create object of partial class Pin
Mirko198010-Jul-09 4:14
Mirko198010-Jul-09 4:14 
Yes, for example, the following code works:
public partial class Class1
{
    int i = 10;

    public void Foo()
    {
        Console.WriteLine(i);
    }
}

static class Program
{
    static void Main()
    {
        Class1 cl1 = new Class1();
        cl1.Foo();
    }
}

AnswerRe: can we create object of partial class Pin
DoctorMick10-Jul-09 4:26
DoctorMick10-Jul-09 4:26 
AnswerRe: can we create object of partial class Pin
Thomas Weller10-Jul-09 4:52
Thomas Weller10-Jul-09 4:52 
AnswerRe: can we create object of partial class Pin
PIEBALDconsult10-Jul-09 6:07
mvePIEBALDconsult10-Jul-09 6:07 
QuestionGet the COM port for my cardreader/writer connected through a usb Pin
Member 435374510-Jul-09 3:52
Member 435374510-Jul-09 3:52 
AnswerRe: Get the COM port for my cardreader/writer connected through a usb Pin
DoctorMick10-Jul-09 4:28
DoctorMick10-Jul-09 4:28 
QuestionEncapsule All List<> Propery And Function Pin
dataminers10-Jul-09 3:38
dataminers10-Jul-09 3:38 
AnswerRe: Encapsule All List<> Propery And Function PinPopular
J4amieC10-Jul-09 3:46
J4amieC10-Jul-09 3:46 
AnswerRe: Encapsule All List<> Propery And Function Pin
PIEBALDconsult10-Jul-09 6:11
mvePIEBALDconsult10-Jul-09 6:11 
QuestionHow to update a chart in a word 2007 document Pin
Mano Piesens10-Jul-09 3:28
Mano Piesens10-Jul-09 3:28 
QuestionHow to use 4 background workers to show upload status Pin
vsaratkar10-Jul-09 3:12
vsaratkar10-Jul-09 3:12 
AnswerRe: How to use 4 background workers to show upload status Pin
MumbleB10-Jul-09 3:54
MumbleB10-Jul-09 3:54 
GeneralRe: How to use 4 background workers to show upload status Pin
vsaratkar10-Jul-09 4:15
vsaratkar10-Jul-09 4:15 
GeneralRe: How to use 4 background workers to show upload status Pin
vsaratkar10-Jul-09 5:19
vsaratkar10-Jul-09 5:19 
GeneralRe: How to use 4 background workers to show upload status Pin
MumbleB10-Jul-09 6:46
MumbleB10-Jul-09 6:46 
GeneralRe: How to use 4 background workers to show upload status Pin
vsaratkar10-Jul-09 7:21
vsaratkar10-Jul-09 7:21 
Questionhow to build a receipt number Pin
kKamel10-Jul-09 2:50
kKamel10-Jul-09 2:50 
GeneralRe: how to build a receipt number Pin
kKamel10-Jul-09 2:58
kKamel10-Jul-09 2:58 

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.