|
|
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.
|
13 Articles match "CLR","Objects"
|
Related DevelopMentor Courses
|
MORE
|
|
Essential LINQ with the Entity Framework
including extension methods and lambda expressions Use LINQ to filter, sort, and group in-memory collections of objects Create LINQ to SQL queries to execute SQL Server stored procedures and perform updates in real-world database applications Write LINQ to XML queries to search XML documents and save them to the file system Build a rich conceptual entity model using the EF and to visually map it to a database schema Use LINQ to Entities to write strongly typed queries against the Entity Data Model Detect and resolve concurrency conflicts with both LINQ to SQL and LINQ to Entities Execute business
DevelopMentor Courses
- Friday, June 12, 2009
Virtual Foundations of C# Programming and the .NET Framework (Part 1)
Examine core language features such as types, variables, and control constructs Use object-oriented features such as class, interface, protection, and inheritance Use properties to implement the private data/public accessor pattern Avoid dll conflicts during deployment Virtual Foundations of C# Programming and the .NET 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. NET Framework is ".NET NET 101" for developers moving to .NET.
DevelopMentor Courses
- Wednesday, February 17, 2010
Foundations of C# Programming and the .NET Framework
Examine core language features such as types, variables, and control constructs Use object-oriented features such as class, interface, protection, and inheritance Perform error notification and error handling using exceptions Use properties to implement the private data/public accessor pattern Use namespaces to group related types Use delegates and events to implement callbacks Override Object class methods such as ToString Avoid dll conflicts during deployment Use dynamic binding and polymorphism to write generic code (i.e., Discuss fundamental concepts such as the Common Language
DevelopMentor Courses
- Friday, June 12, 2009
|
29 Articles match "CLR","Objects"
|
The Latest from DevelopMentor
|
MORE
|
|
MVVM: Introducing the message visualizers
Now we can create a collection of the TitledCommand objects and display
them It returns a disposable object that you invoke Dispose
on lt; Window x : Class ="ServicesTest.Views.MainWindow"
xmlns ="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns : x ="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns : julmar ="http://www.julmar.com/wpfhelpers"
xmlns : ViewModels ="clr-namespace:ServicesTest.ViewModels"
Title ="Notification
Visualizer In this post, I will go over the simple message visualizers available in the MVVM
Helpers
Mark's Blog of Random Thoughts
- Monday, February 1, 2010
MVVM: Binding RadioButton groups
Collection of PersonViewModel objects with child details.
Collection of ValueAndText objects to select child gender
Collection of ValueAndText objects to select the favorite game
Using lt; Window x : Class ="RadioButtonBinding.Views.MainWindow"
xmlns ="http://schemas.microsoft.com/winfx/2006/xaml/presentation" A question I got recently was how to manage Radio Buttons with bindings – in this
instance, instance, the sample code was trying to map a single value to a set of Radio Buttons
based
Mark's Blog of Random Thoughts
- Friday, January 29, 2010
MVVM: Views and ViewModels
fs28 cf1 par ??}
-->
< Window x : Class ="WpfMVVMApplication1.Views.MainWindow" xmlns ="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns : x ="http://schemas.microsoft.com/winfx/2006/xaml" xmlns : julmar ="http://www.julmar.com/wpfhelpers" xmlns : ViewModels ="clr-namespace:WpfMVVMApplication1.ViewModels" xmlns : Converters ="clr-namespace:WpfMVVMApplication1.Converters" DataContext ="{ julmar : ViewModelCreator { x : Type ViewModels : MainViewModel }}" Title ="File
Explorer"
Mark's Blog of Random Thoughts
- Friday, January 22, 2010
|
-
|
The Best from DevelopMentor
|
MORE
|
-
Using Model – View – ViewModel with Silverlight
The complete View looks like this:
1: < UserControl
2: xmlns ="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3: xmlns:x ="http://schemas.microsoft.com/winfx/2006/xaml"
4: xmlns:SilverlightMVVMDemo_ViewModel ="clr-namespace:SilverlightMVVMDemo.ViewModel" xmlns:d ="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc ="http://schemas.openxmlformats.org/markup-compatibility/2006" x:Class ="SilverlightMVVMDemo.View.CustomerView"
The Problem Solver
- Tuesday, April 7, 2009
-
Avoid native code in managed object files (".obj" files)
When a cpp file is compiled with /clr, a managed object file is created. such a managed object file contains only managed code. that end up in a managed object file with managed and native code:
When #pragma unmanaged is used
When the C++ file contains a function with C++ constructs that are not mappable to
IL code.
In most scenarios,
However, there are two scenarios
Marcus' Blog
- Thursday, January 12, 2006
-
Platform type observations..
is determined by the version of the CLR that is loaded.
version of the CLR to start for the process. 32-bit CLR, in other words, that we have a dependency on a 32-bit resource such as
a COM object or platform DLL. Recently someone informed me that the TAPI wrappers (ITAPI3 and ATAPI) do not appear
to function properly on the Win64 platform.
-
Marshalling native function pointers
of the CLR. call the CLR's code heap. build with "CL /clr GFPFDTests.cpp"
#include NET objects are allocated on the GC heap which consists of
// pages with the PAGE_READWRITE flag
Debug::Assert((mbi.Protect & PAGE_READWRITE) ==
PAGE_READWRITE);
PFN pfn = (PFN)p1.ToPointer();
pfn();
WeakReference wr(d1);
d1 = nullptr;
GC::Collect(2);
Debug::Assert(!wr.IsAlive); Now that the book is written and all urgent tasks I had to defer due to the book are
done, I find some time to blog about technical topics.
Marcus' Blog
- Friday, April 6, 2007
-
Six Things That’ll Surprise You About .NET 4.0
systems (say 64 cores) these types of lock free objects will become increasingly
important. CLR and Base-class Libraries
CLR and BCL has new Numerical Types
I recently wrote an article for DevelopMentor ’s
Developments Developments entitled
“ Six Things
That’ll
Michael C. Kennedy's Weblog
- Wednesday, November 11, 2009
-
Part 2: Changing WPF focus in code
for example, you can change focus during your application initialization:
void OnLoaded( object sender,
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:sys="clr-namespace:System;assembly=mscorlib"
Title="Simple Focus" >
None
Continue
Cycle
Once
Local
Contained
Mark's Blog of Random Thoughts
- Thursday, September 4, 2008
-
WPF Data Providers
against an object and it's methods
XmlDataProvider: loads an XML data source and makes it available
NET object, then the
We could clearly do all of this from procedural code -- create an XmlReader object,
the data is really an XmlNode object which the ListBox has no idea how to display.
One of the nifty new features of the WPF platform is the pluggable data providers.
It ships with two out of the box:
ObjectDataProvider: allows you to execute binding expressions
Mark's Blog of Random Thoughts
- Wednesday, January 17, 2007
|
|
|