RonnieOverby.MvcAssetManager.AssetManager.Asset.Asset C# (CSharp) Méthode

Asset() public méthode

public Asset ( string text, AssetType type ) : System
text string
type AssetType
Résultat System
            public Asset(string text, AssetType type)
            {
                if (text == null) throw new ArgumentNullException("text");

                Text = text;
                Type = type;
            }
AssetManager.Asset