[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y ] [Search | Free Show | Home]

What does /g/ think of C#? I know it might seem a bit bloated,

This is a blue board which means that it's for everybody (Safe For Work content only). If you see any adult content, please report it.

Thread replies: 158
Thread images: 8

What does /g/ think of C#?

I know it might seem a bit bloated, but it isn't, and its extremely easy to do work in. Its the language I fell in love with and I just love working with it.
>>
God tier language if you don't hate Microsoft. I also have yet to see a better UI library than WPF.
>>
>>59109259
What is Swing?
>>
Now that Oracle is letting Java slip farther and farther away and making its development slow, C# looks like the better and better option. But "not bloated"? Have you ever seen one of those ".NET Framework 4.5 Overview" posters? We have walls in our office that aren't wide enough to hang one:

http://blog.bbv.ch/2012/11/12/new-poster-net-framework-4-5-overview/

The language might not be fat, but the framework is possibly even bigger than what's in the JDK.

In the sector of very verbose languages, I like it better than Java, though. But then, I don't like verbose languages.
>>
>C#
>HttpRequest throws an exception if response isnt 200 OK.
Its a joke of a language, more meme than JS
>>
>What does /diy/ think of hammer?

>I know it might seem a bit heavy, but it isn't, and its extremely easy to do work in. Its the tool I fell in love with and I just love working with it.
>>
>>59109270
I'm not sure if you're trolling or just haven't used WPF.
>>
>>59109315
>a piece of software wrote in the language does something I don't agree with
>Entire language is a joke

K mate.
>>
>>59109270
You can't be this retarded
>>
It's my native language now and it's very comfy but I'm not using it outside of my workplace. It is one of the best languages to get corporate shit done (business logic, rest apis etc) fast.
>>
>>59109315
I don't think youve ever programmed professionally
>>
>>59109291
it's a shame really. Java is a great language to code in, it's relatively intuitive compared to C and C++ but almost equally powerful.
>>
>>59109881
If you open up source code of .NET framework you will see how much trash you drag with your code, its insane, even for a simple button you drag over 1k lines of useless code made just to hold your hand
>>59109911
Why does it throw exceptions? Do you realize how expensive exception throwing is? ESPECIALLY IN MANAGED LANGUAGE

Don't get me wrong, I've read entire CLR source code and over 5k pages of books on C#/IL/CLR. Its just not worth using anything from any library and just Pinvoke stuff you need from winapi.

>LINQ
slow
>Networking
slow/tons of overhead/exceptions/caches that dont get cleared
>Collections
a lot of overhead, use foreach internally that calls GetEnumerator
>WPF
Good UI framework but more overhead than 50mb Hello world apps in JS
>>
>>59110035
so enlighten us and state the magical language you use that

>is intuitive and verbose
>powerful
>doesn't rely on bloated frameworks
because normally you can pick only two
>>
>>59110068
C and ASM

Only use the language, not libs, every lib is pure garbage, write everything yourself, it will be 100x faster, 100x less overhead and you will know every piece of it. Unlike with absorbing 60mb of libs written by trash pajeets that made those libs for every possible use case which causes more overhead than necessary.

For my latest project I ditched WPF after I saw how much garbage code it generates and I'm using pure DirectX in C#
>>
>>59110092
I think you are wrong on a part with writing your own lib's.
You do realize that most of public libs you get are optimized to hell so you do not have to do it yourself, and why would you, when they did it better.
>>
>>59110092
>Only use the language, not libs, every lib is pure garbage, write everything yourself
>in C
sure let me just lock myself up to write this Hello World project and come back in 5 years

I agree though most frameworks add 95% you don't need but why not just be more selective with importing certain libs you need rather than starting from scratch?

Do you work for a company? I don't think you can ever make any deadline if you write everything yourself in C
>>
>>59110101
None of them are optimized to hell, they are made for general purpose use case that covers all possible scenarios.

Just get dnSpy and check out any part of WPF for example, a Button, you will regret ever writing it.

>>59110109

Nah, I dont work for any company, I sell my software online + doing SEO so I earn enough to live the NEET dream.
>>
>>59110130
OK if you work just by yourself it sounds actually pretty comfy you can just take your time and use code you actually understand and trust.
>>
>>59110092
Wait I thought you didn't use libraries? Why are you using directx then and not building some graphic program yourself?
>>
>>59110092
>C and ASM
AHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHA
>>
>>59109193
I had to use C# to access some equipment on a windows machine, it's actually pretty nice. I mostly write C and scala, so C# isn't exactly to my taste, but it's a pretty good language that I recommend people to try out, especially now that it's not so reliant on windows.

If it wasn't for the windows reliance of yesteryear I would probably have used it a lot more.
>>
>>59110101
Public libs might be optimized to hell and back, but that's the second priority, they also come with tons of redundant checks for safety.
>>
>>59110289
C# is literally C/C++ with a good library and not having to do shit like memory management that shouldn't be doing anyway unless you are Linus Torvalds in 1991 writing a kernel. The main advantage is .NET, which is irrelevant to the language. If they also open sourced WPF, there would be literally 0 reason to stay in outdated technologies from the 1980s like coding in vim.
>>
>>59109193
I use it at work, aspnetcore is pretty nice once it's all set up. LINQ is pretty convenient in most cases, but it sucks at doing complex table joins.
The amount of libraries available are a godsend for tight schedules. Deployment is a breeze on windows.

But I do have to bend over back if I'm deploying it to a non-windows server the first time.
>>
>>59109193
>Only for Bill Gates
>How does this make you feel?
>>
>>59110092
you can make a DLL directly in ASM (e.g. in visual studio, with masm, you can even have your C# and assembly projects in the same solution), without any C, and consume it from C#.
>>
>>59110854
literally no one cares dude
>>
>>59110092
I also use bare winapi for windows with sharpdx by now (from C#), because wpf has far too many abstractions and winforms becomes an insane pain if you need to seriously customize how your windows work

SharpDX isn't noticably slower than DirectX though AFAIK (never had a performance issue stemming from my draw calls), and it's a lot more comfortable than plain DirectX IMO
>>
I don't mind it but the C++11 stdlib is better
>>
>>59110901
it's what i do tho
>>
>>59110922
>>59110901

because if you introduce an extra C layer, it ALWAYS adds an extra jump (and for some reason a good 15-20 cycles overhead per call in practical performance, benchmarked the shit out of it with rdtscp)
>>
>>59110922
>>59110954

im serious man no one cares that you know assembly and can somehow use it within c# i can't think of any situation that would be useful i mean if you're doing embedded programming why would you be using c# anyway
>>
>>59110035
> not using a tool that exists in every proper language
Are you retarded? Exceptions exist to be used. Doesn't natter that they are a little more expensive. And a not successful http request is an exception. At least for me, I've never programmed to expect a failed http request.
>>
>>59110971
lol why even use directx or C from C# then?
performance isn't only important in embedded programming
a 16-64 fold performance increase in a few critical areas can make programs that otherwise wouldn't be feasible on today's hardware (i use a 4700k @ 4.6ghz and utilize it to the max) just make the cut
>>
>>59109270
The second worst UI library in the world.
>>
>>59110092
It will be 100x faster, have 100x less overhead and take 100x more time you mean.
>>
>>59110971
>i can't think of any situation where having more performance would be useful

/g/, ladies and gentlemen.
>>
>>59109259
>God tier language if you don't hate Microsoft. I also have yet to see a better UI library than WPF.
QT. Delphi. Scalafx.

And many more.

C# is an average language in a walled garden.
>>
>>59110130
Reference a single useful project you've done, I want to see what this "system" of yours produces.
(watch him reference a snake game he started in the 80s and just released for alpha testing)
>>
>>59110130
You do understand that those checks do no impose any visible difference to running speed! Our PC's are so fast that it is irrelevant. A lot of time we sacrifice efficiency for readability as it is not required on constant operations.
>>
>>59111017
what the hell are you making? Bitcoin miner?
>>
>>59111075
> average language
It's the best language, the vm and framework not as good!
>>
>>59110822
WPF is hardly the only reason.

Which is why even the real cloud stuff (not GUI software) ended up on the JVM, not .NET. Azures little corner of it is pathetic and merely MS trying its usual Embrace... strategy, but it hasn't worked.
>>
>>59111013
HTTP Response codes indicate that http request was completed. If server responds with 500 or 404 HTTP CODE ITS NOT A FUCKING EXCEPTION
>>59110954
[SuppressUnmanagedCodeSecurity] removes those checks, there is no drawback to calling native then ;)
>>59111079
Sorry, dont want anons to steal my $$$$ ideas
>>59111085
Yes they do. I can design my program better than those pajeets at M$ who are forced to cover every possible way of application.If you take a look at any of .NET framework dlls you'll see all the good classes are marked internal so that you cant access them, while all the abstract pajeet shit is public to use
>>
>>59111125
C# only survives because MS is forcing it into most of its Windows things. Elsewhere almost nobody uses it.

ART rules Android, the JVM plus JS plus other languages rules the intelligent / cloud internets (without any .NET in sight), and so on.

What does it tell you if virtually all third parties that aren't forced to develop only for MS will choose something else...? (Well, it's /g/, I kinda expect denial rather than insight...)
>>
>>59111207
Who C# without .Net here?
Also, how is C# for phonedev?
>>
>>59111207
> all third parties choose something else
you are retarded for sure. I know at least 6 companies that actively choose C#. And those are the ones I've interviewed for in the past. Lots of java ones too but it has nothing to do with MS forcing it dumbass

I would choose C# if I were to start a project, simply because it is neater and better than Java. We are yet to see linq equivalent.
>>
>>59111308
Xamarin for phone dev
10/10, and it pays 10/10 since it's new and not many devs do it.
>>
>>59111202
> 500 404 HTTP is not exception
yeah let me search my db and boom db crashed. Well that's not an exception it's just an inconvenience.

The point of exceptions are that you can handle them in the larger stack call. For example if I have
ui -> server -> service -> db (crash)
I can handle my exception in server instead of service. You can say dumb shit as return null or some crap down the line which indicates error, and if you are actually thinking that, I am glad you are a fucking NEET and I never have to read nor touch anything you have ever written
>>
>>59111713
Do you have any idea how slow throwing an exception is in .NET?

Even the chief engineer at Bing said .NET Http lib is bad, but you somehow know better in your shitty company

I am glad I never have to read your shitty code or work with someone at your level of intelligence because i would kill myself
>>
>>59110092
kek, let me take a wild guess... you are unemployed?
>>
File: DYEL.jpg (91KB, 640x640px) Image search: [Google]
DYEL.jpg
91KB, 640x640px
>>59111743
I can't even tell if you're trolling anymore. seriously what are you writing that needs that sort of speed on web request handling. An average web request can take seconds. Now you are crying about a few milliseconds of overhead on the exception handling?
>>
The hilarious thing about the idiots on /g/ who love to shit on Visual Studio and other Microsoft products is they always talk about >MUH BLOAT!!!

They didn't make Visual Studio so you can write your hello world program and call yourself a programmer. It's an enterprise tool that makes working on enterprise projects easy.

You can always tell who's unemployed and who is employed based on the responses you get in these threads. Certainly not saying Microsoft and their products are infallible, but some of the criticisms here are just completely stupid.
>>
never used it, why would i use it over c++ and java? Isnt it what all osx apps are written in
>>
Useless outside of windows.
>>
>>59110068
Rust
Modern, functional C++
>>
>>59111823
lol hit it on point with pretty much all IDE haters. Vim doesn't work as good when you have thousands of lines to maintain. It can do but there are better options.

I actually have vim plugin on VS
>>
>>59111824
C++ is a different type of language. You can compare it to java, it's easier to write and easier to maintain and read.
>>59111856
Not with the new .Net core
and you can choose your server to be on Windows
>>
>>59111895
>Not with the new .Net core
>
https://blog.jetbrains.com/dotnet/2017/02/15/rider-eap-17-nuget-unit-testing-build-debugging/
>>
>>59111786
It can take seconds because of all the overhead trash. In a concurrent/parallel environment those few milliseconds of overhead turn out into seconds which turns into minutes and hours
>>
>>59111895
>C++ is a different type of language. You can compare it to java, it's easier to write and easier to maintain and read.
so how can you not compare c++ to java or c# theyre all oop?
>>
>>59111895
>C++ is a different type of language. You can compare it to java, it's easier to write and easier to maintain and read.
Thanks to the rule of 3 I mean 5 I mean 51056 writing C++ is more verbose than Java these days.
>>
>>59111131
The azure services are actually pretty good. I set up an Azure VM and sql database at work for a project and while being fast enough to deal with millions of rows and joins with immediate response times it was ridiculously easy to set up. A big + Microsoft got from me the other day was when the database performance analyzer suggested what kind of indexes I could create to speed up certain queries.
>>
>>59111963
>millions of rows
Babbys first table.
>>
File: astroturfing-1.jpg (3MB, 6024x5624px) Image search: [Google]
astroturfing-1.jpg
3MB, 6024x5624px
>>59111963
>A big + Microsoft got from me
>>
File: Mega_393ca6_5396674.gif (188KB, 500x375px) Image search: [Google]
Mega_393ca6_5396674.gif
188KB, 500x375px
>>59112058
oh you
>>
>>59111664
Third parties that create a platform.

>I know at least 6 companies that actively choose C#.
These are writing for a MS stack for sure. Not Android, not Linux, not some cloud deployment, not something else.

You may notice that people writing software for random other systems will pick C, C++, Java, Scala, whatever... but almost never .NET shit.

C# is useful only with, in, around MS products.

> I would choose C# if I were to start a project, simply because it is neater and better than Java. We are yet to see linq equivalent.
There are quite a few solutions in the JVM ecosystem:
http://www.jooq.org/
http://slick.lightbend.com/

But these aren't really the interesting stuff. What's interesting is this:
https://spark.apache.org/
And the old setup that still has more uses and users than LINQ:
https://spring.io/ + http://hibernate.org/

> I would choose C# if I were to start a project, simply because it is neater and better than Java.
It isn't actually better as evidenced by production quality libraries and that everyone uses the JVM and no one but MS dependents use .NET.

If I want something neater I pick Scala.
>>
>>59111963
Azure services are scam. You can buy a dedi/vps with 5x better performance on OVH/scaleaway for the same price.
>>
I'd look more into kotlin if I wanted to try Java. C# is not bad. At least better than PHP, except for the huge open source community.
>>
>>59112168
>If I want something neater I pick Scala.
Have you even seen the Scala meme talk?
>>
>>59112175
Price isn't really the deciding factor for us
>>
>>59111963
> The azure services are actually pretty good.
Just about nobody in big / distributed data uses them.

Everyone with half a clue is on S3, OpenStack and so on. With Cassandra, Spark, Docker and all the other common tooling.

Azure is the shitty "me too, plz let me embrace and extinguish!" of Microsoft, but nobody except the fully .NET / MS dependent ecosystem wants it.

Almost all of the thousands of companies using Cloud stuff are not on it.
>>
File: akka-userbase.png (42KB, 940x200px) Image search: [Google]
akka-userbase.png
42KB, 940x200px
>>59112262
Probably not - why would I care?
>>
>>59112291
>huffington post
I'm convinced now.
>>
Can anyone tell me what you are expected to know to get a job as a C# developer? I learned it myself and know the syntax, but I'm not sure if I'm good enough and have the experience to apply for work.
>>
>>59112307
To do what?

If u want to write high performance and high quality code you need to know how CLR works, how GC works, how memoy man works, how IL is being JITTed, how CRT works how CTS works, metadata tables. etc
>>
>>59112322
Basically you're better of just using native code because you need to know less to make it fast.
>>
>>59112307
If you are doing desktop, then WPF with mvvc pattern, maybe Rx.
For Web, asp MVC.

Then WCF for RPC.

Then Nhibernate for DB stuff, haven't tried Ms's ORM yet. Don't know if it's better.

It would be nice if you know a dependency injection/container library, MS's one was nice and small but it's name clashes with something else. Was it Unity?
>>
>>59110035
>LINQ
>>slow
Depends on the situation, the fact that is actually lazy evaluated makes it very fast in certain situations.
>>
>>59112370
>Lazy

It can't be fast if it's not running
>>
>>59110092
this guy gets it
>>
>>59112367

Thanks
>>
>>59109193
Better than Java. D is better then all of them
>>
>>59109270
nobody can be this retarded
>>
>>59112434
*than
>>
>>59112322

I don't want to join NASA

Just be a code monkey working on desktop software
>>
>>59112444
Oh, then read WPF Unleashed 4.5 and you're good to go
>>
>>59112384
>performing unnecessary operations is the way to go
Yeah nah.
>>
>>59112306
Only the top of the Akka (one single lib!) user base.

Direct customers of the main consulting company for Scala:
https://www.lightbend.com/resources/case-studies-and-stories

And what I saved for last:
http://www.marketwired.com/press-release/apache-spark-growth-is-pervasive-as-users-embrace-public-cloud-machine-learning-2161564.htm

https://www.meetup.com/topics/apache-spark/

Yep, just about the whole "cloud" industry is using Spark. Which is written in Scala, and often used in Scala.
>>
>>59109315
Roll your own
>>
>>59112505
Nobody gives a fuck about the cloud industry. If you don't have your own datacenter, you're too irrelevant to matter.
>>
>>59109193

I am someone who used to love C and C++.

But the best language ever is C#.

All the dumb fucks that don't know it's cross platform now due to mono and open source compiler now are just retarded.

Not only that but everything is so much faster with C# (Development wise) if you are making something more complex then fizzbuzz, which I know is the only thing everyone on /g/ makes. Not only is reflection insanely helpful for auto-creating UIs the large selection of libraries and functionality that you would normally have to grab a library for in C\C++ is built into it.

It's syntax is also more garnered to new asynchronous methodologies which looks ugly as sin in C++ and fucking retarded in C.
>>
File: spark_summit.png (99KB, 1575x240px) Image search: [Google]
spark_summit.png
99KB, 1575x240px
>>59112505
Forgot image.

>>59112530
> Nobody gives a fuck about the cloud industry.
You must have been out of the industry for years, or be completely trapped in C# .NET.

Everyone is giving a fuck about modern "cloud" infrastructure. There are a shitload of smaller companies also deploying these, outsourcing etc. The idea is that it works at any scale, and that's precisely what companies want.

Even just the adopter base for one of the typical Spark backend DBs (this one isn't written in Scala itself) is staggering:
https://web.archive.org/web/20161029175856/http://planetcassandra.org/companies/

Shit, even random individual people hacking and publishing Android apps not rarely have outsourced their data hosting to a full cloud stack recently.

Just about everyone wants into cloud tech.
>>
>>59110035
>Don't get me wrong, I've read entire CLR source code and over 5k pages of books on C#/IL/CLR.
Imagine wasting all that time just to come to the conclusion that you don't want to use a language.
>>
Any way to load images faster/in a more parrarel way on c#? I had problems with slow loading images from a catalog in a server, cause I had to make a <div> on each image, so I used a repeater for now with a handler getting the images through enumeratefiles. But all this causes the images to load in a linear fashion, making it look like the images are loading really slow when its just handling of them that is slow. I'm new on C# and would really appreciate some help
>>
>>59109193
Was taught C# in university. Used it for 3-4 years then did a project that forced me to learn C++ and I stuck with that ever since. I like having more low level control since I'm often doing high performance shit.
>>
>>59112596
>https://web.archive.org/web/20161029175856/http://planetcassandra.org/companies/
Makes me sad to see my employer there.
>>
>>59111070
that's how C# devs think
>>
>>59111786
ANY delay added to the already large delay in networking is catastrophic. Milliseconds matter.
>>
>>59109193
It's one of the baby duck languages and even worse an OOP language. At least it's better than Java.
>>
>>59111823
There's no reason why Visual Studio should be slow.
>>
>>59111786
>An average web request can take seconds
any website made with Go + its http libs will be really fast by default
>>
>>59109270
What is JavaFX?
>>
Learning it before C has crippled my learning of C a bit but when i just want to shit out something that works (on windows at least) it's perfect.
Java is horrible in comparison.
>>
>>59109973
I just got back into java for some work projects using Apache Camel and Spring Boot. I always liked Java the language but really dont like the eco-system...mainly Maven, I fucking hate Maven. Its one of the things that drove me away from Java, I dont want to spend half my time figuring out why dependencies are going unresolved because Maven is ass raping the classpath.

I switched to Gradle, which so far doesnt suck as much. Other than that I really dig Java 8 lambdas
>>
>>59112656
It's not
>>
File: 1481440055529.png (222KB, 635x473px) Image search: [Google]
1481440055529.png
222KB, 635x473px
>>59112598
H-hey at least I didnt waste my time going out and losing my virginity
>>
>>59111913
>In the near future, Rider will not allow debugging .NET Core applications that target CoreCLR. This is due to a licensing issue with a package that we’ve been using*. We were using this functionality considering it part of .NET Core which is Open Source, but it turned out that this specific package has a different licensing model. It explicitly only allows usage from Visual Studio, VS Code or Xamarin Studio.
holy shit, fucking MS
>>
>>59109193
It depends on whether or not you care more about:
>implementation details
>final product
Since /g/ is mostly comprised of autists that give more importance to the former I'll let you arrive at your own conclusions.
>>
>>59110035
>this anon gets it
>>
>>59112620
Iit's actually not "sad".

The ecosystem this is in (which also is the ecosystem of Spark, OpenStack, Docker, Amazon S3 and so on) is *very* successful at providing scaling "clouds" and generally more successful at being easy to manage and easy to scale than anything related to servers that came before.

The rate of adoption through the stack right to the user side across almost the whole broad range of server-side computing and storage is staggering and proves just how well this works.

What you usually don't see is the .NET Microsoft poison. And that's not sad, because everything gets embraced and extinguished if Microsoft controls it.
>>
>>59112781
Why are you writing like a shill?
>>
>>59112691
Run your stuff on the amazing SBT http://www.scala-sbt.org/ if Gradle isn't perfect yet.
>>
>>59112792
I'm clearly paid for by the open source illuminati of a dozen projects.

Because nobody else could point out some reasons why and how .NET sucks, or correct the idea that for instance cloud technology stuff is NOT irrelevant but basically in the process of taking over most servers (not necessarily as a service - just the technology stack).
>>
>>59112833
Can you do it without writing like a shill?
>The rate of adoption through the stack right to the user side across almost the whole broad range of server-side computing and storage is staggering and proves just how well this works.
Wow, such synergy, much vertical integration.
>>
>>59109270

Even as a Java dev I know this is bait.
>>
>>59109270
10/10 bait.
>>
God tier - JS
Near God tier - Rust and Go
Middle tier - C++
Rest are just trash, sorry
>>
>>59112882
at least he didn't say AWT
>>
>>59111713
a 500 or 404 res code might not be a critical error.

you should only be throwing exceptions for nrarly end-the-world kind of shit.

if a 500 or 404 are end the world for your use case, there is nothing stopping you from throwing the exception yourself.
But a http lib should never throw a exception for a fucking successfully completed transaction with an http server.
>>
>>59112874
The only marketing term used in that sentence was basically "rate of adoption".

The rest was IT / computer related terminology, not marketing.
>>
>>59112175
you use Azure for the services Azure provides on top of the VMs, not actually for VMs.

no shit you can get a better deal for just simple VMs literally anywhere else.
the same goes for this like AWS.
>>
>>59112898
pretty much.

I throw JS at everything now and my life couldn't be better.
>>
>>59113008
You're on 4chan.
>>
>>59113019
I don't get your meaning.
>>
It is too easy to reverse engineer and crack or steal
>>
>>59113023
Your life could be better by not being on 4chan.
>>
>>59113030
true I suppose.
but javascript definitely helps.

it's a pretty spiffy thing.
>>
Compiler Error Message: CS0433: The type ‘ASP.clientredirector_ascx’ exists in both ‘c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\sb2\4d76034e\bec2c8d0\App_Web_clientredirector.ascx.cdcab7d2.zmdrab5k.dll’ and ‘c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\sb2\443234e\bvfdd0\App_Web_axhgbqrn.dll’

/thread
>>
>>59113008
Im not the biggest js guy but I've really enjoyed using underscore and angular. I wanted to check out Sencha(Extjs) but the licensing is fucking retarded.

Typescript looks pretty awesome, I might start experimenting with that.
>>
>>59113053
I just use choo right now and then throw bulma.io and shit out half assed webshit that jus werks.

only hard thing with choo is modules because of functional and dom diffing bullshit.
>>
>>59113029
How do you steal software, barring deleting ALL other copies in existence?
>>
>.net is now cross platform
>yet visual studio code is written in javascript
what did they mean by this?
>>
>>59113148
Who is actually saying that?

>.net is now cross platform
Sounds like "You can trusssssst usssss!"
>>
>>59109193

not a real language because it isn't C or C++
>>
>>59113184
Read the source if you don't trust it bro.
>>
>>59109315
That is false
If response is not 2xx it is considered a not succesful request but it dont throw anything
>>
>>59109193
The best language. Seriously.

I just wish they hadn't inherited Java's null problem. Now that Nullable<T> with its short form exists, there is no reason for reference types to be nullable.
>>
>>59113648
what source?

the runtime and some "core" libs are but a shitload of C# projects still depend on nonfree M$ binaries.
>>
Leagues better than Java or C++
>>
>>59111913
>>59112720
The .NET Core framework is 100% free. But the debugger implementation should be proprietary for the closed-source Visual Studio. The ICorDebug interface is open source though so Rider can easily reimplement it.
>>
>>59114062
>the debugger implementation should be proprietary for the closed-source Visual Studio
Why
>>
>>59114062
And about half the frameworks depend on windows specifics.

Besides Microsoft itself can't be stopped from using Windows / Azure specific features that make every other implementation shit.

Once they open source the platforms it runs on and everything related, then we can talk.

This is, by the way, the case for platforms the JVM run on. Almost all of them are open and Oracle wouldn't nearly have enough pull to make, for example, Oracle's own DBs the only good DBs for Java, and Oracle's newest Linux the only platform on which Java runs well.
>>
>>59114081
Visual Studio is best known for its painless debugger. Why should one buy VS when its debugger is free?
>>
>>59114143
Why should one use .net outside of VS?
>>
>>59114141
Which framework are you talking about? Beside graphics rendering, .NET Core can run on all major Linux and Unix platforms.

>>59114162
Any text editor is good enough for console and web apps.
>>
>>59114232
>Any text editor is good enough for console and web apps.
Confirmed for never having used a good debugger. Java comes with a good debugger. Any DWRAF language can be debugged with gdb which is pretty much the most powerful debugger out there (too bad that the default ui is shit.) The only language without a good free debugger is .net.

Nobody should be desperate enough to use that shit.
>>
>>59111202
>[SuppressUnmanagedCodeSecurity] removes those checks, there is no drawback to calling native then ;)

lol. there is. it doesn't matter what optimization flags you set in the C++ compiler (whole program optimization won't change shit), and what attributes you apply to the extern method declarations in the C (inline..) or C# code, you can't get around the jmp instruction if you indirectly call the assembly function from an exposed C/C++ function rather then exposing the asm directly.

Try it any way you want and look at the compiled assembly, me and people on Stackoverflow came to the same conclusion.
>>
>>59114232
"Besides graphics rendering" - so I guess just don't ever do anything with a GUI, or do it on web browser. Lel.

And just generally speaking, every damn thing .NET essentially depends on being an almost always closed MS technology for any production readiness.

Most *SQL apart from MSSQL is just pretty much horseshit maintained by one person if you're lucky, IDE apart from VS are mostly ridiculously crappy, and so on and so forth.

You can go an inch beyond MS territory and you're already in pain, and MS makes no real efforts to change this.
>>
>>59111874
Rust has no competitive IDE, IMO it's even more pain to develop in than C++ (at least if you use visual studio)
>>
>>59114271
Java is not designed to have a good debugger, try to make a method breakpoint and see how long it is to evaluate. But MS debuggers are integrated with the Win32 debugging API so it's much faster.
>>
>>59114232
>Any text editor is good enough for console and web apps.

imo C#'s power comes from the fact that it co-evolved with VS from its very birth
if you want to use C# outside of VS, Scala (if you don't care about performance) or Swift (if you do) both beat it looking purely at the language features (and a lot other languages too, depending on what you're doing)
>>
>>59114677
>Scala (if you don't care about performance)
Sits mostly in performance critical components of the cloud, Twitter's software stack etc. It performs *really* well.

It's only that cold compile times aren't the fastest, but with the typical "hot" (cached, partial) compiles this is not really slow either for most software.
>>
>>59114677
>C# outside of VS, Scala (if you don't care about performance)
Arguing for C# with performance is a good joke.
>>
>>59113550
finally the word of truth in this thread of herecy
>>
Swift is better
>>
File: 1484292899302s.jpg (3KB, 124x99px) Image search: [Google]
1484292899302s.jpg
3KB, 124x99px
Microshill getting paid $0.50 to post a thread and screen shot it for his client.

These types of threads should be ignored.
Thread posts: 158
Thread images: 8


[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y] [Search | Top | Home]

I'm aware that Imgur.com will stop allowing adult images since 15th of May. I'm taking actions to backup as much data as possible.
Read more on this topic here - https://archived.moe/talk/thread/1694/


If you need a post removed click on it's [Report] button and follow the instruction.
DMCA Content Takedown via dmca.com
All images are hosted on imgur.com.
If you like this website please support us by donating with Bitcoins at 16mKtbZiwW52BLkibtCr8jUg2KVUMTxVQ5
All trademarks and copyrights on this page are owned by their respective parties.
Images uploaded are the responsibility of the Poster. Comments are owned by the Poster.
This is a 4chan archive - all of the content originated from that site.
This means that RandomArchive shows their content, archived.
If you need information for a Poster - contact them.