conditional-binding Questions

1

Solved

Is there a way to write this if/else if/else ladder as a switch statement? let x: Any = "123" if let s = x as? String { useString(s) } else if let i = x as? Int { useInt(i) } else if let b = x ...
Habitforming asked 16/8, 2016 at 16:49

5

Solved

I have a protocol defined: protocol Usable { func use() } and a class that conforms to that protocol class Thing: Usable { func use () { println ("you use the thing") } } I would like to ...
Interview asked 8/6, 2014 at 21:27

1

Solved

It is a desktop application which is obliged to impersonate the current user when accessing the underlying data source. How can I tell Ninject not to bind the dependency until the property of a pa...

1

Solved

In Ninject 1.0 I had following binding definitions: Bind<ITarget>().To<Target1>().Only(When.Context.Variable("variable").EqualTo(true)); Bind<ITarget>().To<Target2>(); Gi...
1

© 2022 - 2024 — McMap. All rights reserved.