Last change
on this file since 17379 was
17284,
checked in by dpiringe, 5 years ago
|
#3026: renamed namespace and project from HeuristicLab.Manufacture to HeuristicLab.JsonInterface
|
File size:
273 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using System.Threading.Tasks;
|
---|
6 |
|
---|
7 | namespace HeuristicLab.JsonInterface {
|
---|
8 | public static class ObjectExtensions {
|
---|
9 | public static T Cast<T>(this object obj) => (T)obj;
|
---|
10 | }
|
---|
11 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.