|
|
browse.develop.com
Browse.develop.com is a community that was established to collect and
organize valuable web information. Our technical staff have selected and
indexed information and courses that they feel will help you stay
current on best practices across the SDLC.
|
44 Articles match "Runtime"
|
Related DevelopMentor Courses
|
MORE
|
|
Virtual Foundations of C# Programming and the.NET Framework (Part 1)
In part one of this series on programming C#, we'll discuss fundamental concepts such as the Common Language Runtime (CLR), garbage collection, and deployment. How much overhead do CLR services like runtime compilation and garbage collection add? dll files, and the Common Language Runtime execution engine. NET 101" for developers moving to.NET. Explore core C# features like classes, inheritance, namespaces, and events. In this course, you spend half your time on the C# language and half on the.NET platform. interface vs. abstract class, or property vs. field)?
DevelopMentor Courses
- Wednesday, February 17, 2010
Foundations of C# Programming and the.NET Framework
Discuss fundamental concepts such as the Common Language Runtime (CLR), garbage collection, and deployment. How much overhead do CLR services like runtime compilation and garbage collection add? dll files, and the Common Language Runtime execution engine. less code!) Distinguish between "implementation inheritance" and "interface inheritance" Use ADO.NET to connect to SQL Server and run a simple query Build a basic Windows Forms GUI Essential C# is ".NET NET 101" for developers moving to.NET. Explore core C# features like classes, inheritance, namespaces, and events.
DevelopMentor Courses
- Friday, June 12, 2009
Essential Silverlight 3
The course focuses on Silverlight 3, which includes a scaled-down.NET runtime engine and library. Create Rich Internet Applications (RIAs) using languages and libraries that you already know. Deliver online business applications, multimedia websites, and games to Windows, Mac OS, and Linux clients. You'll get answers to these questions: How does Silverlight compare to Flash, AJAX, and WPF? How do I use graphics, animations, effects and media to build compelling user interfaces? How can I utilize background threads to make my UI more responsive? All materials supplied.
DevelopMentor Courses
- Wednesday, June 17, 2009
|
72 Articles match "Runtime"
|
The Latest from DevelopMentor
|
MORE
|
|
OCaml and Threading
There are now many efficient concurrent runtimes and garbage collectors, many of which use lock-free algorithms. Coincidentally, someone posted a link to this message from 2002 where Xavier Leroy explains why they won’t implement multiprocessing in OCaml. It’s interesting to reconsider his arguments 8 years later. He says there are three reasons to use parallelism: Make use of multiple processors: OCaml does not support this. Overlapped I/O: Multiple threads can block on I/O, but only one thread can execute at a time. OCaml supports this. OCaml supports this. So the only issue is #1.
Handwaving
- Friday, July 9, 2010
Go’s type syntax
The solution is to go back to OCaml and rewrite the runtime to support concurrency. They added it to Haskell, which has a much more sophisticated runtime. The Go programming language’s main claim to fame is it is developed by Unix god’s Pike and Thompson. Go is an attempt to be a better system’s language than C. However, the type syntax is just weird enough to be off-putting. Pike explains why in this post. IMHO, any statically typed language developed in the 21st century should have type inferencing. How hard could it be? Anyway, Go needs type inferencing.
Handwaving
- Thursday, July 8, 2010
Apple stifles PL innovation
This bans all other programming languages and runtimes from the iPhone OS. Apple has changed their developer agreement to require that all apps be written in C, C++ or Objective-C. The reason is obvious : the iPhone API defines a lucrative platform which Apple wants to protect by eliminating any other platform from running on top. Some developers are pissed , while others don’t care. This is exactly the problem Microsoft faced when Java first appeared. If Java successfully supplanted the Windows API, then apps would be portable across OSes and MS would lose their franchise.
Handwaving
- Tuesday, April 13, 2010
|
-
|
The Best from DevelopMentor
|
MORE
|
-
The new Windows Workflow Foundation 4 runtime
With WF3 there was a central workflow runtime environment called the WorkflowRuntime and used to manage the lifetime of workflow instances. Like recording workflow errors, tracking execution or workflow persistence must be done for each instance while before we could just do it on the workflow runtime. Basically we had to add a different scheduler to the workflow runtime and explicitly tell the scheduler to execute the workflow. In WF4 this central class no longer exists and we manage individual workflows. using (WorkflowRuntime workflowRuntime = new WorkflowRuntime()). {.
The Problem Solver
- Tuesday, June 23, 2009
-
Using Model – View – ViewModel with Silverlight
All UI control properties that need to change at runtime do so by data binding to a ViewModel property. The View – Model – ViewModel design pattern, also known as MVVM, is getting more popular these days. have found it extremely easy to use when developing very different applications and have used the design pattern recently in both ASP.NET, WPF and Silverlight applications. However easy as it might be is seems to confuse people as I have seen some terrible examples where people make a complete mess of things. The View is data bound to a ViewModel. The ViewModel is just another class.
The Problem Solver
- Tuesday, April 7, 2009
-
Getting started with Windows Workflow Foundation 4
That might be a bit surprising, after all we still have activities and a workflow runtime right? You might need a bit of luck because it appears the current bits are still a bit unstable and on my laptop running Windows 7 the designer tends to lock up quite a bit In the next post more about how the workflow is created and started at runtime. As you may have heard Windows Workflow Foundation 4 is not an upgrade from Windows Workflow Foundation 3 (or 3.5). In fact Windows Workflow Foundation 3 was the first version and 3.5 added only very few features and some bug fixes.
The Problem Solver
- Monday, June 22, 2009
-
Using WF4 bookmarks with IWorkflowInstanceExtension
But that also means they are not aware of the workflow runtime environment and can’t do much more that respond to calls from a workflow. With the required extension done we still need to make sure it gets added to the workflow runtime of choice. Note: This blog post is written using the.NET framework 4.0 Beta 2 In this previous blog post I showed how to create an asynchronous activity using the NativeActivity and CreateBookmark to pause a workflow execution. Using that in a WorkflowApplication was easy but what about WorkflowInvoker or WorkflowServiceHost? return null ; }. Enjoy!
The Problem Solver
- Wednesday, January 27, 2010
-
Loading XAML Workflows in WF4
Its nice and easy, you design the workflow, compile it and at runtime there is a.NET type you use to create and run workflows. The main drawback is that this approach isn’t very flexible, sometimes you want to be able to change your workflow definition at runtime or store it in a database so recompiling isn’t an option. Note: This blog post is written using the.NET framework 4.0 RC 1 Most of the time I used compiled workflows in Windows Workflow Foundation 4. Fortunately we can also load a workflow from the XAML file itself and execute the resulting workflow activity. Enjoy!
The Problem Solver
- Sunday, March 7, 2010
-
Changing the Icon on a custom activity designer
protected override void Execute(CodeActivityContext context). {. // Obtain the runtime value of the Text input argument. Note: This blog post is written using the.NET framework 4.0 Beta 2 When I create custom activity designers the icon that appears is usually one of the first things I want to change. Doing so in WF4 isn’t hard once you know where to look but if you don’t can be a bit of a challenge. Suppose I have a simple write line activity like this: [Designer( typeof (MyWriteLineDesigner))]. string text = context.GetValue( this.Text); Console.WriteLine(text); }. }. Sweet. Enjoy!
The Problem Solver
- Monday, January 25, 2010
-
Accessing Context Properties from within a map in BizTalk
It is not a 100% clean construct because BizTalk really tries to do its best to disallow access to internal classes and runtime. It's been a while, but i hope this will make up for being quiet again. I've run across the question many times, but never found the time to really dive into it. Now that time was found. And attached is the result. However, utilitzing some thread local storage and (what i think is) a reasonable assumption, this functoid is actually able to retrieve any of the message context properties in a receive port (no orchestrations required) ContextAccessor.zip (255.35
XML from the Coffee Shop
- Thursday, February 1, 2007
|
|
|