c# to native

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

    c# to native

    I'm sure this question has been addressed before, but...
    Is it possible to run a C# program on Win98 without having
    to install the 20 MB .net framework?
    I'm a java programmer and have to do a windows project.
    VB is too primitive, VC++ is too complitcated, C# would be
    the best fit for me, but if it requires more than 5 Mb
    runtime, it's a non-starter...
  • Mattias Sjögren

    #2
    Re: c# to native

    [color=blue]
    >Is it possible to run a C# program on Win98 without having
    >to install the 20 MB .net framework?[/color]

    No



    Mattias

    --
    Mattias Sjögren [MVP] mattias @ mvps.org

    Please reply only to the newsgroup.

    Comment

    • Huihong

      #3
      Re: c# to native

      Take a look of our mini deployment tool,



      It puts togther the only required portion of framework
      for distribution. Typical windows app can be deployed
      with a zip file < 10MB. The tool can also link assemblies
      together so only the really required methods will be
      linked into the final assembly. You can simply copy the
      directory to machines that do not have .NET framework,
      the app runs as usual, a sample Windows app is available
      from the website. (We are also working on the next step:
      the native compiler)

      Huihong
      Remotesoft
      [color=blue]
      >-----Original Message-----
      >I'm sure this question has been addressed before, but...
      >Is it possible to run a C# program on Win98 without[/color]
      having[color=blue]
      >to install the 20 MB .net framework?
      >I'm a java programmer and have to do a windows project.
      >VB is too primitive, VC++ is too complitcated, C# would[/color]
      be[color=blue]
      >the best fit for me, but if it requires more than 5 Mb
      >runtime, it's a non-starter...
      >.
      >[/color]

      Comment

      • Jacob N. Rohde

        #4
        Re: c# to native

        "michaill" <michaill@aoo.c om> skrev i en meddelelse
        news:0f8c01c38b 0d$90abf4d0$a10 1280a@phx.gbl.. .[color=blue]
        > I'm sure this question has been addressed before, but...
        > Is it possible to run a C# program on Win98 without having
        > to install the 20 MB .net framework?
        > I'm a java programmer and have to do a windows project.
        > VB is too primitive, VC++ is too complitcated, C# would be
        > the best fit for me, but if it requires more than 5 Mb
        > runtime, it's a non-starter...[/color]

        A native compiler would kind of defeat the whole point of C#, so no.


        Comment

        • Jekke, Just Jekke

          #5
          Re: c# to native

          On Sun, 5 Oct 2003 20:52:13 +0200, "Jacob N. Rohde"
          <digital_rohde@ hotmail.com> wrote:
          [color=blue]
          >"michaill" <michaill@aoo.c om> skrev i en meddelelse
          >news:0f8c01c38 b0d$90abf4d0$a1 01280a@phx.gbl. ..[color=green]
          >> I'm sure this question has been addressed before, but...
          >> Is it possible to run a C# program on Win98 without having
          >> to install the 20 MB .net framework?
          >> I'm a java programmer and have to do a windows project.
          >> VB is too primitive, VC++ is too complitcated, C# would be
          >> the best fit for me, but if it requires more than 5 Mb
          >> runtime, it's a non-starter...[/color]
          >
          >A native compiler would kind of defeat the whole point of C#, so no.[/color]

          A native compiler without the runtime might defeat the purpose of
          ..net, but that's not part of the C# specification.

          It's entirely possible to write a C# program that doesn't implement
          ..net at all. Unfortunately, the first requirement would be to write
          your own compiler since none are available yet.

          Comment

          Working...