Click here to Skip to main content
15,867,308 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: Why .NET CLR so slow compared to JVM or Dart or V8 ? Call for help Pin
Eddy Vluggen31-Aug-14 5:22
professionalEddy Vluggen31-Aug-14 5:22 
GeneralRe: Why .NET CLR so slow compared to JVM or Dart or V8 ? Call for help Pin
Antonino Porcino31-Aug-14 6:37
Antonino Porcino31-Aug-14 6:37 
GeneralRe: Why .NET CLR so slow compared to JVM or Dart or V8 ? Call for help Pin
Eddy Vluggen31-Aug-14 6:51
professionalEddy Vluggen31-Aug-14 6:51 
AnswerRe: Why .NET CLR so slow compared to JVM or Dart or V8 ? Call for help Pin
Pete O'Hanlon30-Aug-14 11:41
subeditorPete O'Hanlon30-Aug-14 11:41 
AnswerRe: Why .NET CLR so slow compared to JVM or Dart or V8 ? Call for help Pin
Pete O'Hanlon31-Aug-14 7:43
subeditorPete O'Hanlon31-Aug-14 7:43 
GeneralRe: Why .NET CLR so slow compared to JVM or Dart or V8 ? Call for help Pin
Antonino Porcino31-Aug-14 21:37
Antonino Porcino31-Aug-14 21:37 
GeneralRe: Why .NET CLR so slow compared to JVM or Dart or V8 ? Call for help Pin
Eddy Vluggen1-Sep-14 0:30
professionalEddy Vluggen1-Sep-14 0:30 
GeneralRe: Why .NET CLR so slow compared to JVM or Dart or V8 ? Call for help Pin
Antonino Porcino1-Sep-14 2:20
Antonino Porcino1-Sep-14 2:20 
no, it's just a user-defined class:
C#
public class /*struct*/ Vector3f {
    public number x, y, z;

    public Vector3f(number x = 0, number y = 0, number z = 0) {
        this.x = x;
        this.y = y;
        this.z = z;
    }

    public static Vector3f operator -(Vector3f a, Vector3f b) {
        return new Vector3f(a.x - b.x, a.y - b.y, a.z - b.z);
    }

GeneralRe: Why .NET CLR so slow compared to JVM or Dart or V8 ? Call for help Pin
Eddy Vluggen1-Sep-14 7:40
professionalEddy Vluggen1-Sep-14 7:40 
GeneralRe: Why .NET CLR so slow compared to JVM or Dart or V8 ? Call for help Pin
Antonino Porcino1-Sep-14 8:49
Antonino Porcino1-Sep-14 8:49 
AnswerRe: Why .NET CLR so slow compared to JVM or Dart or V8 ? Call for help Pin
Rob Philpott1-Sep-14 6:45
Rob Philpott1-Sep-14 6:45 
GeneralRe: Why .NET CLR so slow compared to JVM or Dart or V8 ? Call for help Pin
Antonino Porcino1-Sep-14 8:47
Antonino Porcino1-Sep-14 8:47 
GeneralRe: Why .NET CLR so slow compared to JVM or Dart or V8 ? Call for help Pin
Pete O'Hanlon1-Sep-14 9:40
subeditorPete O'Hanlon1-Sep-14 9:40 
AnswerRe: Why .NET CLR so slow compared to JVM or Dart or V8 ? Call for help Pin
Pete O'Hanlon1-Sep-14 7:38
subeditorPete O'Hanlon1-Sep-14 7:38 
GeneralRe: Why .NET CLR so slow compared to JVM or Dart or V8 ? Call for help Pin
Antonino Porcino1-Sep-14 21:47
Antonino Porcino1-Sep-14 21:47 
GeneralRe: Why .NET CLR so slow compared to JVM or Dart or V8 ? Call for help Pin
Pete O'Hanlon1-Sep-14 22:03
subeditorPete O'Hanlon1-Sep-14 22:03 
GeneralRe: Why .NET CLR so slow compared to JVM or Dart or V8 ? Call for help Pin
Antonino Porcino2-Sep-14 0:19
Antonino Porcino2-Sep-14 0:19 
GeneralRe: Why .NET CLR so slow compared to JVM or Dart or V8 ? Call for help Pin
Pete O'Hanlon2-Sep-14 0:36
subeditorPete O'Hanlon2-Sep-14 0:36 
GeneralRe: Why .NET CLR so slow compared to JVM or Dart or V8 ? Call for help Pin
Antonino Porcino2-Sep-14 1:30
Antonino Porcino2-Sep-14 1:30 
AnswerRe: Why .NET CLR so slow compared to JVM or Dart or V8 ? Call for help Pin
Ben M Watson4-Sep-14 5:43
Ben M Watson4-Sep-14 5:43 
GeneralRe: Why .NET CLR so slow compared to JVM or Dart or V8 ? Call for help Pin
Antonino Porcino4-Sep-14 7:10
Antonino Porcino4-Sep-14 7:10 
QuestionLocalization based on namespace Pin
Moreno Airoldi27-Aug-14 23:18
Moreno Airoldi27-Aug-14 23:18 
AnswerRe: Localization based on namespace Pin
Bernhard Hiller28-Aug-14 21:10
Bernhard Hiller28-Aug-14 21:10 
GeneralRe: Localization based on namespace Pin
Moreno Airoldi1-Sep-14 2:35
Moreno Airoldi1-Sep-14 2:35 
AnswerRe: Localization based on namespace Pin
Eddy Vluggen29-Aug-14 7:56
professionalEddy Vluggen29-Aug-14 7:56 

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.