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

C#

 
GeneralRe: Run the application once Pin
Pete O'Hanlon14-Dec-11 22:15
mvePete O'Hanlon14-Dec-11 22:15 
AnswerRe: Run the application once Pin
BillWoodruff14-Dec-11 22:13
professionalBillWoodruff14-Dec-11 22:13 
QuestionUse the environment provided by the application instead from system environment. Pin
Member 848801414-Dec-11 1:35
Member 848801414-Dec-11 1:35 
AnswerRe: Use the environment provided by the application instead from system environment. Pin
PIEBALDconsult14-Dec-11 1:45
mvePIEBALDconsult14-Dec-11 1:45 
SuggestionRe: Use the environment provided by the application instead from system environment. Pin
Shameel14-Dec-11 2:02
professionalShameel14-Dec-11 2:02 
QuestionDisplay a menu in context menu Pin
sarang_k14-Dec-11 0:00
sarang_k14-Dec-11 0:00 
AnswerRe: Display a menu in context menu Pin
BillWoodruff14-Dec-11 2:48
professionalBillWoodruff14-Dec-11 2:48 
QuestionHow I can Show the Value of Textbox in another form in C sharp? Pin
ishaq shinwari13-Dec-11 21:25
ishaq shinwari13-Dec-11 21:25 
AnswerRe: How I can Show the Value of Textbox in another form in C sharp? Pin
Pete O'Hanlon13-Dec-11 21:37
mvePete O'Hanlon13-Dec-11 21:37 
GeneralRe: How I can Show the Value of Textbox in another form in C sharp? Pin
ishaq shinwari13-Dec-11 22:26
ishaq shinwari13-Dec-11 22:26 
GeneralRe: How I can Show the Value of Textbox in another form in C sharp? Pin
Pete O'Hanlon13-Dec-11 23:01
mvePete O'Hanlon13-Dec-11 23:01 
AnswerRe: How I can Show the Value of Textbox in another form in C sharp? Pin
Varun Sareen13-Dec-11 23:12
Varun Sareen13-Dec-11 23:12 
QuestionPLD's quastion (storage binding) Pin
desatir731613-Dec-11 20:48
desatir731613-Dec-11 20:48 
AnswerRe: PLD's quastion (storage binding) Pin
Pete O'Hanlon13-Dec-11 21:51
mvePete O'Hanlon13-Dec-11 21:51 
AnswerRe: PLD's quastion (storage binding) Pin
jan lucas13-Dec-11 23:05
jan lucas13-Dec-11 23:05 
AnswerRe: PLD's quastion (storage binding) Pin
Deborah Palmer McCain14-Dec-11 10:35
Deborah Palmer McCain14-Dec-11 10:35 
QuestionVS 2010 No method to override error Pin
Deborah Palmer McCain13-Dec-11 14:23
Deborah Palmer McCain13-Dec-11 14:23 
C#
// CS0115.cs
namespace MyNamespace
{
    abstract public class MyClass1
    {
        public abstract int f();
    }

    abstract public class MyClass2
    {
        public override int f()   // CS0115
        {
            return 0;
        }

        public static void Main()
        {
        }
    }
}



After reducing errors to 1, I received the error (named in the Subject line) on line 14 of my project "No method to override". The problem is, Line 14 is blank.
When I went to MSDN, I found CS0115, but I don't know how to change it to work with my project. Should this be simple deduction and logical? Any help would be appreciated.
AnswerRe: VS 2010 No method to override error Pin
PIEBALDconsult13-Dec-11 15:27
mvePIEBALDconsult13-Dec-11 15:27 
GeneralRe: VS 2010 No method to override error Pin
Deborah Palmer McCain13-Dec-11 16:27
Deborah Palmer McCain13-Dec-11 16:27 
GeneralRe: VS 2010 No method to override error Pin
PIEBALDconsult14-Dec-11 1:58
mvePIEBALDconsult14-Dec-11 1:58 
AnswerRe: VS 2010 No method to override error Pin
BillWoodruff13-Dec-11 15:43
professionalBillWoodruff13-Dec-11 15:43 
GeneralRe: VS 2010 No method to override error Pin
Deborah Palmer McCain13-Dec-11 16:23
Deborah Palmer McCain13-Dec-11 16:23 
AnswerRe: VS 2010 No method to override error Pin
Luc Pattyn13-Dec-11 19:08
sitebuilderLuc Pattyn13-Dec-11 19:08 
GeneralRe: VS 2010 No method to override error Pin
PIEBALDconsult14-Dec-11 1:57
mvePIEBALDconsult14-Dec-11 1:57 
GeneralRe: VS 2010 No method to override error Pin
Deborah Palmer McCain14-Dec-11 10:10
Deborah Palmer McCain14-Dec-11 10:10 

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.