Skip to main content
replaced http://stackoverflow.com/ with https://stackoverflow.com/
Source Link
URL Rewriter Bot
URL Rewriter Bot

This is a fantastic solution that uses a generics. We use it all over our codebase.

Generic TryParse Extension methodGeneric TryParse Extension method

once you have that, then you can do...

this.GetProducts(this.CategoryComboBox.SelectedValue.TryParse<int>());

This is a fantastic solution that uses a generics. We use it all over our codebase.

Generic TryParse Extension method

once you have that, then you can do...

this.GetProducts(this.CategoryComboBox.SelectedValue.TryParse<int>());

This is a fantastic solution that uses a generics. We use it all over our codebase.

Generic TryParse Extension method

once you have that, then you can do...

this.GetProducts(this.CategoryComboBox.SelectedValue.TryParse<int>());
Source Link
ap.dev
  • 340
  • 3
  • 11

This is a fantastic solution that uses a generics. We use it all over our codebase.

Generic TryParse Extension method

once you have that, then you can do...

this.GetProducts(this.CategoryComboBox.SelectedValue.TryParse<int>());