No, there isn't. It's more idiomatic to write this though:
Dog dog = animal as Dog;
if (dog != null)
{
// Use dog
}
Given that "as followed by if" is almost always used this way, I've jokingly suggested before now that there should be an "as if" operator, but there isn't anything like this in C#.
The problem is that you can't declare a variable in the condition part of an if statement1. The closest approach I can think of is this:
// EVIL EVIL EVIL
for (Dog dog = animal as Dog; dog != null; dog = null)
{
...
}
And that's just nasty...
(I've just tried it, and it does work. But please, please don't do this. Oh, and you can declare dog using var of course.)
Of course you could write an extension method:
public static void AsIf<T>(this object value, Action<T> action) where T : class
{
T t = value as T;
if (t != null)
{
action(t);
}
}
Then call it with:
animal.AsIf<Dog>(dog => {
// Use dog in here
});
Or combine the two:
public static void AsIf<T>(this object value, Action<T> action) where T : class
{
// EVIL EVIL EVIL
for (var t = value as T; t != null; t = null)
{
action(t);
}
}
EDIT: inspired by a colleague's suggestion, you can use an extension method without a lambda expression in a cleaner way than the for loop:
public static IEnumerable<T> AsOrEmpty(this object value)
{
T t = value as T;
if (t != null)
{
yield return t;
}
}
Then:
foreach (Dog dog in animal.AsOrEmpty<Dog>())
{
// use dog
}
1 You can assign values in if statements, although I rarely do so. It's not terribly unusual for me to do it in a while though when reading streams of data. For example:
string line;
while ((line = reader.ReadLine()) != null)
{
...
}
These days I normally prefer to use a wrapper which lets me use foreach (string line in ...) but I view the above as a pretty idiomatic pattern. It's usually not nice to have side-effects within a condition, but the alternatives usually involve code duplication, and when you know this pattern it's easy to get right.
boolcondition be? – Kirk Woll Aug 18 '11 at 19:58null!=falsein C#; C# only allows actual bools or things implicitly convertible to bools inifconditions. Neither nulls nor any of the integer types are implicitly convertible to bools. – romkyns Aug 24 '11 at 17:14