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

  • SEARCH
  • Home
  • 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

Related Questions

I have multiple inheritance like this one: Can I extend a class using more
This is something I know can be done somehow , because I've done it
I have a query that I know can be done using a subselect, but
So I'm using this pretty standard jquery plugin pattern whereby you can grab an
I want to extend Object to add a few methods. so I can do
I have a standard com.sun.lwuit.list . I can get the selected item using methods
I know that we can get the current location of Android device using getLastKnownLocation
I know that I can do something like: public class AbstractDao<T extends Bean> {
I want to know can we have a JPanel with a Layout other than
I need to know can we add image in TextArea through StyleableTextField htmlText because

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.