Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 115731
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T03:03:58+00:00 2026-05-11T03:03:58+00:00

With C# 3.0, I know you can extend methods using the ‘this’ nomenclature. I’m

  • 0

With C# 3.0, I know you can extend methods using the ‘this’ nomenclature.

I’m trying to extend Math.Cos(double radians) to include my new class. I know that I can just create a ‘Cos’ method in my existing class, but I’m just interested in seeing how/if this can be done for the sake of the exercise.

After trying a few new things, I’m returning to SO to get input. I’m stuck.

Here’s what I have at this point…

public class EngMath {     /// ---------------------------------------------------------------------------     /// Extend the Math Library to include EngVar objects.     /// ---------------------------------------------------------------------------      public static EngVar Abs(this Math m, EngVar A)     {         EngVar C = A.Clone();          C.CoreValue = Math.Abs(C.CoreValue);          return C;     }      public static EngVar Cos(this Math m, EngVar A)     {         EngVar C = A.Clone();         double Conversion = 1;         // just modify the value. Don't modify the exponents at all          // is A degrees? If so, convert to radians.         if (A.isDegrees) Conversion = 180 / Math.PI;          C.CoreValue = Math.Cos(A.CoreValue * Conversion);          // if A is degrees, convert BACK to degrees.         C.CoreValue *= Conversion;          return C;     }      ... 
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T03:03:59+00:00Added an answer on May 11, 2026 at 3:03 am

    Extension methods are a way to make your static methods appear to be instance methods on the type they ‘extend’. In other words you need an instance of something in order to use the extension method feature.

    It sound to me that you’re going about it in the opposite way by trying to make Math.Cos handle your type. In that case, I’m afraid you have to implement the functionality yourself. If that is not what you’re trying to do, please clarify.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 76k
  • Answers 76k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • added an answer I'm doing something similar, actually. Not the same goal, but… May 11, 2026 at 2:55 pm
  • added an answer Sure - just use Contains - using Northwind as an… May 11, 2026 at 2:55 pm
  • added an answer I have resolved the problem! In DiscountASP I have changed… May 11, 2026 at 2:55 pm

Related Questions

With C# 3.0, I know you can extend methods using the 'this' nomenclature. I'm
I've written a library to match strings against a set of patterns and I
I'm currently researching XNA and C# 3.0, and other related tech (Maya 2009) and
I have an Address object that has properties AddressLine1, AddressLine2, Suburb, State, ZipCode. (there
Do you know how can I make splint ignore where I declare my variables?

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.