def filename
self.uri.split('/').last
...
C# On Get the Filename segment o...
by jwmittag,
January 01, 2008 16:29
public string FileName
{
get
...
C# On Get the Filename segment o...
by jwmittag,
January 01, 2008 16:18
Last but not least we can u...
public string FileName
{
get
...
C# On Get the Filename segment o...
by jwmittag,
January 01, 2008 16:00
We can get rid of another t...
/// <remarks> /// This namespace holds our own extension methods. ...
C# On Get the Filename segment o...
by jwmittag,
January 01, 2008 15:57
Importing the entire System...
public string FileName
{
get
...
C# On Get the Filename segment o...
by jwmittag,
January 01, 2008 15:41
The Ruby version uses the A...
public string FileName
{
get
...
C# On Get the Filename segment o...
by jwmittag,
January 01, 2008 15:28
Introducing temporary local...
public string FileName
{
get
...
C# On Get the Filename segment o...
by jwmittag,
January 01, 2008 15:17
Now we remove the superfluo...
public string FileName
{
get
...
C# On Get the Filename segment o...
by jwmittag,
January 01, 2008 15:14
Let's now work on improving...
def filename delim = '/' # temporary local variable instead of passing as a literal parameter ...
C# On Get the Filename segment o...
by jwmittag,
January 01, 2008 15:11
To make the Ruby and C# ver...
def filename
self.uri.split('/').last
...
C# Get the Filename segment o...
by jwmittag,
January 01, 2008 15:04,
11 refactorings, tagged with Comparison, Scott Porad, asp.net, DotNET, .net, C-Sharp, CSharp, C#, RoR, Ruby on Rails, rails, ruby
On his Blog "Progress vs. P...

If we now reformat the C# c...