using System; using System.Collections; using System.Reflection; using System.Reflection.Emit; using System.Runtime; using System.Runtime.Serialization; namespace System.Text.RegularExpressions { [Serializable] public class Regex : ISerializable { pr…
ASP.NET MVC扩充数据模型-定义数据模型的Metadata Posted on 2018-07-12 by Wang Kepai Rate this post 无论你是使用LINQ to SQL.Entity Framework或其他ORM技术建置基础数据模型,大部分的ORM技术都会提供部分类别(Partial Class)的扩充机制,可以让你扩充通过工具生成的这些数据模型类别,进一步提供更完整的数据服务. 定义数据模型的Metadata 数据模型的Metadata又称Model…
今天看到一个java类中定义了接口,写个备忘录,记录一下 package com.gxf.test; public class Test_interface { public interface show{ public void show(); } static class TestInterface implements show{ @Override public void show() { System.out.println("this is interface!"); }…