Click here to Skip to main content
16,005,467 members
Home / Discussions / C#
   

C#

 
GeneralRe: how to read a file content, that file was already opened ? Pin
Xmen Real 25-Feb-09 22:53
professional Xmen Real 25-Feb-09 22:53 
QuestionOOP Concepts Any article Pin
Rameez Raja25-Feb-09 19:30
Rameez Raja25-Feb-09 19:30 
AnswerRe: OOP Concepts Any article Pin
aaCog25-Feb-09 21:46
aaCog25-Feb-09 21:46 
QuestionConsole application in intranet Pin
C. Hariharan25-Feb-09 19:22
C. Hariharan25-Feb-09 19:22 
AnswerRe: Console application in intranet Pin
ABitSmart25-Feb-09 20:58
ABitSmart25-Feb-09 20:58 
GeneralRe: Console application in intranet Pin
C. Hariharan25-Feb-09 22:22
C. Hariharan25-Feb-09 22:22 
AnswerRe: Console application in intranet Pin
Shyam K Pananghat25-Feb-09 22:59
Shyam K Pananghat25-Feb-09 22:59 
Questioninheritance [modified] Pin
aratireddy25-Feb-09 19:00
aratireddy25-Feb-09 19:00 
Using System;
public Class Class1
{
Public Void Hello()
{
Console.WriteLine("base");
}
}
public Class Class2:Class1
{
Public Void Greet()
{
Console.WriteLine("derived");
}
}
Public Class Demo
{
static Void Main()
{
Class1 C1=new Class1();
C1.Hello();
Class2 C2=new Class2();
C2.Hello();
C2.Greet();
Class1 C3=new Class2();
C3.Hello();
}
}
while executing this code in command prompt it is showing the following error
source file inh.cs could not be found
no inputs specified
is there any error in the syntax if there please rectify

modified on Thursday, February 26, 2009 1:07 AM

AnswerRe: inheritance Pin
Xmen Real 25-Feb-09 20:09
professional Xmen Real 25-Feb-09 20:09 
Questiondatagrin in combobox Pin
behzadcp25-Feb-09 18:51
professionalbehzadcp25-Feb-09 18:51 
AnswerRe: datagrin in combobox Pin
Christian Graus25-Feb-09 18:52
protectorChristian Graus25-Feb-09 18:52 
GeneralRe: datagrin in combobox Pin
behzadcp25-Feb-09 20:07
professionalbehzadcp25-Feb-09 20:07 
Questiondynamically add Flash C# application Pin
Zap-Man25-Feb-09 18:40
Zap-Man25-Feb-09 18:40 
AnswerRe: dynamically add Flash C# application Pin
Christian Graus25-Feb-09 18:52
protectorChristian Graus25-Feb-09 18:52 
GeneralRe: dynamically add Flash C# application Pin
Zap-Man25-Feb-09 19:17
Zap-Man25-Feb-09 19:17 
GeneralRe: dynamically add Flash C# application Pin
Zap-Man25-Feb-09 19:21
Zap-Man25-Feb-09 19:21 
Question[Message Deleted] Pin
sridhar88725-Feb-09 18:16
sridhar88725-Feb-09 18:16 
AnswerRe: How to solve APPLICATION.EXE ERROR in C#.NET??? Pin
Christian Graus25-Feb-09 18:19
protectorChristian Graus25-Feb-09 18:19 
GeneralRe: How to solve APPLICATION.EXE ERROR in C#.NET??? Pin
dan!sh 25-Feb-09 18:41
professional dan!sh 25-Feb-09 18:41 
GeneralRe: How to solve APPLICATION.EXE ERROR in C#.NET??? Pin
Christian Graus25-Feb-09 18:48
protectorChristian Graus25-Feb-09 18:48 
Question[Message Deleted] Pin
sridhar88725-Feb-09 18:03
sridhar88725-Feb-09 18:03 
AnswerRe: How to solve APPLICATION.EXE ERROR in C#.NET??? Pin
Christian Graus25-Feb-09 18:09
protectorChristian Graus25-Feb-09 18:09 
JokeRe: How to solve APPLICATION.EXE ERROR in C#.NET??? Pin
Xmen Real 25-Feb-09 20:06
professional Xmen Real 25-Feb-09 20:06 
QuestionParse SQL code in C# Pin
aaCog25-Feb-09 17:21
aaCog25-Feb-09 17:21 
AnswerRe: Parse SQL code in C# Pin
N a v a n e e t h25-Feb-09 17:32
N a v a n e e t h25-Feb-09 17:32 

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.