Skip to content

Commit

Permalink
Merge pull request #194 from igochkov/patch-1
Browse files Browse the repository at this point in the history
Proposition for extension of class Arguments
  • Loading branch information
nikhilk committed Jun 30, 2012
2 parents dbd2d46 + 2094daf commit 6528a5d
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/Libraries/CoreLib/Arguments.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,18 @@ namespace System {
[ScriptName("arguments")]
public static class Arguments {

/// <summary>
/// Retrieves the arguments list.
/// </summary>
/// <returns>The arguments list.</returns>
[ScriptAlias("arguments")]
[IntrinsicProperty]
public static object[] Current {
get {
return null;
}
}

/// <summary>
/// Retrieves the number of actual arguments passed to the function.
/// </summary>
Expand Down

0 comments on commit 6528a5d

Please sign in to comment.