Click here to Skip to main content
15,891,431 members
Home / Discussions / C#
   

C#

 
AnswerRe: please help Pin
Malcolm Smart16-Oct-07 20:53
Malcolm Smart16-Oct-07 20:53 
AnswerRe: please help Pin
pmarfleet16-Oct-07 20:55
pmarfleet16-Oct-07 20:55 
GeneralRe: please help Pin
DavidNohejl17-Oct-07 0:41
DavidNohejl17-Oct-07 0:41 
AnswerRe: please help Pin
Malcolm Smart16-Oct-07 21:06
Malcolm Smart16-Oct-07 21:06 
GeneralRe: please help Pin
N a v a n e e t h16-Oct-07 21:25
N a v a n e e t h16-Oct-07 21:25 
GeneralRe: please help Pin
J4amieC16-Oct-07 22:17
J4amieC16-Oct-07 22:17 
GeneralRe: please help Pin
Pete O'Hanlon16-Oct-07 22:01
mvePete O'Hanlon16-Oct-07 22:01 
Questionwaht exactly the use of new keyword in c# Pin
sravani.p16-Oct-07 20:26
sravani.p16-Oct-07 20:26 
heloo.... i want to hide the base class method using new operator.

i tried this code.but it was not working.here base class method is calling.

plz help me soon.


using System;
using System.Collections.Generic;
using System.Text;

namespace ConsoleApplication23
{
class Program:user
{

public new void print()
{
Console.WriteLine("hello how are you?");
}

static void Main(string[] args)
{
user u = new Program();
u.print();
Console.ReadLine();
}
}

class user
{
public void print()
{
Console.WriteLine("hellohello");
}
}
}

sravani.p
AnswerRe: waht exactly the use of new keyword in c# Pin
YouMiss16-Oct-07 20:37
YouMiss16-Oct-07 20:37 
AnswerRe: waht exactly the use of new keyword in c# Pin
Andrei Ungureanu16-Oct-07 20:37
Andrei Ungureanu16-Oct-07 20:37 
AnswerRe: waht exactly the use of new keyword in c# Pin
Guffa16-Oct-07 22:13
Guffa16-Oct-07 22:13 
GeneralRe: waht exactly the use of new keyword in c# Pin
sravani.p17-Oct-07 20:41
sravani.p17-Oct-07 20:41 
QuestionDisabling System Sound Alerts for MessageBoxes Pin
Sukhjinder_K16-Oct-07 19:26
Sukhjinder_K16-Oct-07 19:26 
AnswerRe: Disabling System Sound Alerts for MessageBoxes Pin
Niiiissssshhhhhuuuuu16-Oct-07 20:35
Niiiissssshhhhhuuuuu16-Oct-07 20:35 
GeneralRe: Disabling System Sound Alerts for MessageBoxes Pin
Sukhjinder_K16-Oct-07 21:48
Sukhjinder_K16-Oct-07 21:48 
QuestionSSL or SSH for pocket pc Pin
kingletas16-Oct-07 18:49
kingletas16-Oct-07 18:49 
QuestionSSL and SSH Pin
kingletas16-Oct-07 18:44
kingletas16-Oct-07 18:44 
AnswerRe: SSL and SSH Pin
N a v a n e e t h16-Oct-07 19:08
N a v a n e e t h16-Oct-07 19:08 
GeneralRe: SSL and SSH Pin
kingletas16-Oct-07 19:24
kingletas16-Oct-07 19:24 
GeneralRe: SSL and SSH Pin
N a v a n e e t h16-Oct-07 20:14
N a v a n e e t h16-Oct-07 20:14 
GeneralRe: SSL and SSH Pin
kingletas16-Oct-07 21:14
kingletas16-Oct-07 21:14 
GeneralRe: SSL and SSH Pin
N a v a n e e t h16-Oct-07 21:29
N a v a n e e t h16-Oct-07 21:29 
GeneralRe: SSL and SSH Pin
kingletas16-Oct-07 21:42
kingletas16-Oct-07 21:42 
GeneralRe: SSL and SSH Pin
N a v a n e e t h16-Oct-07 22:33
N a v a n e e t h16-Oct-07 22:33 
QuestionHow can I reallocate memory of arrays in C#? Pin
hogan.smith16-Oct-07 18:31
hogan.smith16-Oct-07 18:31 

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.