Sign in
Lucian's VBlog
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Tags
async
COM
covariance
iterators
mvvm
phone
plugin
PostVB10
spec
talk
tools
web
win8
Archive
Archives
February 2013
(3)
December 2012
(3)
November 2012
(6)
July 2012
(1)
May 2012
(1)
April 2012
(1)
March 2012
(3)
November 2011
(1)
October 2011
(1)
May 2011
(4)
April 2011
(6)
October 2010
(2)
June 2010
(1)
April 2010
(2)
March 2010
(7)
February 2010
(29)
January 2010
(12)
November 2009
(2)
August 2009
(1)
February 2009
(1)
December 2008
(1)
November 2008
(3)
October 2008
(4)
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Lucian's VBlog
Req9: allow CObj in constants and attributes
Posted
over 3 years ago
by
Lucian Wischik, MSFT
2
Comments
[This post is part of a series, " wish-list for future versions of VB "] IDEA: Allow a CObj in constants and attributes. Currently it's not allowed, for instance, to write Const x As Object = CObj("hello") or to pass CObj(1) into an attribute, Both...
Lucian's VBlog
Req5: unsafe and pointer support
Posted
over 3 years ago
by
Lucian Wischik, MSFT
4
Comments
[This post is part of a series, " wish-list for future versions of VB "] IDEA: "unsafe" and pointer support. VB should support unsafe programming, like C#, with pointers and all that. SCENARIO: Pointer support is useful for people who write marshallers...
Lucian's VBlog
Power11: Extension properties
Posted
over 3 years ago
by
Lucian Wischik, MSFT
3
Comments
[This post is part of a series, " wish-list for future versions of VB "] IDEA: Extension properties. We should add extension properties, just like we have extension methods. SCENARIO: In Javascript and a host of web-related DSLs, there are...
Lucian's VBlog
Req10: share variables in method bodies
Posted
over 3 years ago
by
Lucian Wischik, MSFT
6
Comments
[This post is part of a series, " wish-list for future versions of VB "] VB's "static variables" are a powerful and useful time-saver. They declare a variable with a one-off initialization which is shared amongst all invocations of a instance's...
Lucian's VBlog
Req3: multiline strings
Posted
over 3 years ago
by
Lucian Wischik, MSFT
7
Comments
[This post is part of a series, " wish-list for future versions of VB ". Just to note, I've been reading everyone's comments -- thank you everyone for the feedback -- but I want to finish putting up the entire list before I get round to responding.] ...
Lucian's VBlog
How to await a button click
Posted
5 months ago
by
Lucian Wischik, MSFT
1
Comments
[This post is part of a series How to await a storyboard, and other things ] Sometimes we want to await until a button has been clicked. Once place where this is useful is, for instance, when displaying the message “Click button to continue”...
Lucian's VBlog
Core5: Overloading on optional parameters
Posted
over 3 years ago
by
Lucian Wischik, MSFT
2
Comments
[This post is part of a series, " wish-list for future versions of VB "] IDEA: Overloading on optional parameters. Allow you to have overrides which differ only in their optional parameters. The rules for "overloaded method resolution" would have to...
Lucian's VBlog
Power4: Custom property templates and custom event templates
Posted
over 3 years ago
by
Lucian Wischik, MSFT
5
Comments
[This post is part of a series, " wish-list for future versions of VB "] IDEA: Custom property templates. We should have an easy way for users to write boiler-plate code in their properties. This would include things like INotifyPropertyChanged...
Lucian's VBlog
Power10: Reduce verbosity through #light
Posted
over 3 years ago
by
Lucian Wischik, MSFT
9
Comments
[This post is part of a series, " wish-list for future versions of VB "] IDEA: Add a #light directive, like F#, to reduce VB's verbosity . We already eliminated the dreaded "_" to make VB syntax look cleaner. We could also use layout as in Python...
Lucian's VBlog
Req14: Non-empty default partial methods
Posted
over 3 years ago
by
Lucian Wischik, MSFT
4
Comments
[This post is part of a series, " wish-list for future versions of VB "] IDEA: Allow a non-empty default partial method. (This suggestion from Bill McCarthy ). For instance, Partial Class C Partial Private Sub f( ByVal s As String ) Console...
Lucian's VBlog
Req2: null-propagating field access
Posted
over 3 years ago
by
Lucian Wischik, MSFT
7
Comments
[This post is part of a series, " wish-list for future versions of VB "] IDEA: Introduce a syntax for null-propagating field access. We could use the syntax ".?" for this. For instance, ' What the user writes Dim name = Customer .? Name ...
Lucian's VBlog
How to await a drag operation
Posted
5 months ago
by
Lucian Wischik, MSFT
0
Comments
[This post is part of a series How to await a storyboard, and other things ] In my app, I want to await a drag operation. Here’s how I’d like to await it: Private Async Sub rectangle1_PointerPressed(sender As Object , e As PointerRoutedEventArgs...
Lucian's VBlog
Power2: Async and Resumable methods
Posted
over 3 years ago
by
Lucian Wischik, MSFT
4
Comments
[This post is part of a series, " wish-list for future versions of VB "] IDEA: Async and Resumable Methods. We should be able to use the "Async Programming Model" (APM) more easily, via an extra keyword "Async": Async Function Test() As Integer...
Lucian's VBlog
I'm a VB at PDC
Posted
over 4 years ago
by
Lucian Wischik, MSFT
0
Comments
Hello from PDC! The VB session was here: http://microsoftpdc.com/Sessions/FT32 - I'll post the code from it shortly, and let you know when the video goes live. The talk covered many of the new features in VB10, and showed a Silverlight4 application...
Lucian's VBlog
Power1: REPL, and VBScript.NET
Posted
over 3 years ago
by
Lucian Wischik, MSFT
1
Comments
[This post is part of a series, " wish-list for future versions of VB "] [The first set of ideas I called "Core Ideas" because they fill in missing parts VB's current code feature set. This next set I call "Power Ideas" because they open up new ways...
Lucian's VBlog
Power7: Dictionary and list literals
Posted
over 3 years ago
by
Lucian Wischik, MSFT
3
Comments
[This post is part of a series, " wish-list for future versions of VB "] IDEA: Dictionary literals. You should be able to write a dictionary initializer with an easier syntax. Moreover, if the user didn't specify the type of the dictionary, then...
Lucian's VBlog
Power3: Shared methods inside interfaces
Posted
over 3 years ago
by
Lucian Wischik, MSFT
2
Comments
[This post is part of a series, " wish-list for future versions of VB "] IDEA: Allow shared methods inside interfaces, including operators. To support this we’d also need changes inside the CLR. SCENARIO: You want to write a general-purpose mathematical...
Lucian's VBlog
Power5: Custom anonymous types
Posted
over 3 years ago
by
Lucian Wischik, MSFT
2
Comments
[This post is part of a series, " wish-list for future versions of VB "] IDEA: Custom anonymous types. We should allow the user to provide a custom "anonymous type" template. This idea came from Bill McCarthy , who gave two examples: Dim customer...
Page 4 of 4 (93 items)
1
2
3
4