API

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Santhu

    #1

    API

    How can we make a api in .net as we make it in java?

    Thank you
  • Lawrence Oluyede

    #2
    Re: API

    Santhu <anonymous@disc ussions.microso ft.com> writes:
    [color=blue]
    > How can we make a api in .net as we make it in java?[/color]

    Mmm what do you mean with makin an API? An API is a application program
    interface, a set of classes/methods/interfaces to developing something
    for a specific program/system/framework

    --
    Lawrence "Rhymes" Oluyede
    Blogger is a blog publishing tool from Google for easily sharing your thoughts with the world. Blogger makes it simple to post text, photos and video onto your personal or team blog.

    Comment

    • Jon Skeet [C# MVP]

      #3
      Re: API

      =?Utf-8?B?U2FudGh1?= <anonymous@disc ussions.microso ft.com> wrote:[color=blue]
      > How can we make a api in .net as we make it in java?[/color]

      What *exactly* do you mean? Do you mean a class library?

      --
      Jon Skeet - <skeet@pobox.co m>
      Pobox has been discontinued as a separate service, and all existing customers moved to the Fastmail platform.

      If replying to the group, please do not mail me too

      Comment

      • Santhu

        #4
        Re: API

        I want to have C# file and give the detail documentation about that class like no of functions in it, the classes which it inherits and add any comments if necessary etc.,

        How can i do that in .net

        Thank you

        Comment

        • Jon Skeet [C# MVP]

          #5
          Re: API

          =?Utf-8?B?U2FudGh1?= <anonymous@disc ussions.microso ft.com> wrote:[color=blue]
          > I want to have C# file and give the detail documentation about
          > that class like no of functions in it, the classes which it
          > inherits and add any comments if necessary etc.,
          >
          > How can i do that in .net?[/color]

          Write your class in C# using XML comments, and build the XML document
          from that. You can then use something like NDoc to convert that into
          HTML etc.

          --
          Jon Skeet - <skeet@pobox.co m>
          Pobox has been discontinued as a separate service, and all existing customers moved to the Fastmail platform.

          If replying to the group, please do not mail me too

          Comment

          Working...