The custom-type tag has no wiki summary.
7
votes
2answers
94 views
Why custom types accept ad-hoc attributes in Python (and built-ins don't)?
I'd like to know why one is able to create a new attribute ("new" means "not previously defined in the class body") for an instance of a custom type, but is not able to do the same for a built-in ...
3
votes
5answers
784 views
How can I create an enum using numbers?
Is it possible to make an enum using just numbers in C#? In my program I have a variable, Gain, that can only be set to 1, 2, 4, and 8. I am using a propertygrid control to display and set this value. ...
2
votes
4answers
78 views
C# Xml deserialization with custom type member
I have an object to deserialize but the object has custom type ApplicationLanguage that cannot be serialize.
[Serializable]
public class FieldTranslation
{
// how is this ...
2
votes
4answers
89 views
Is it possible to cast string into my own type?
public class Currency{
private Code {get;set;}
public Currency(string code){
this.Code = code;
}
//more methods here
}
I want to be able to make my object castable
string curr ...
2
votes
1answer
1k views
Silverlight RadGrid Bind Column to Object
Simple question....
I have an issue binding a column in RadGrid (SILVERLIGHT) to a custom type.
My scenario:
<telerik:RadGridView x:Name="Grid1" AutoGenerateColumns="false" ...
2
votes
1answer
55 views
Hiberate mapping type and saved Type
I have Class CustomDate and that is referred in other class called Test.
public class CustomDate{
public String toString(){
return "20100829"
}
}
public class Test{
CustomDate ...
1
vote
1answer
24 views
Is there a way for phpDoc to document an array of objects as a parameter?
In phpDoc-generated documentation I can cause phpDoc to generate a link to a custom type definition for a given param using
@param CustomType $variablename
and that works great. However, the code ...
1
vote
1answer
182 views
Wordpress Custom Type permalink containing Taxonomy slug
I'm trying to create a permalink pattern for a Custom Type, that includes one of its taxonomies. The taxonomy name is known from the start (so I'm not trying to add or mix all of its taxonomies, just ...
1
vote
1answer
268 views
Fluent Nhibernate 3 Mapping Composite Field (Custom Type)
HI all, my scenario
public class Permission
{
public virtual Function Function { get; set; }
public virtual Profile Profile { get; set; }
}
public class MapPermission : ...
0
votes
1answer
42 views
Removing duplication in Hibernate annotations
We are using Hibernate 3.6.x and Joda-time, persisting DateTime with a org.jadira.usertype.dateandtime.joda.PersistentDateTimeWithZone like so:
@Columns(columns = {
@Column(nullable = false, ...
0
votes
1answer
82 views
Writing EnhancedUserType for saving String alike information in Hibernate, avoiding SQL-Injection
I have some entity like an Address. Because of performance issues I want to save the whole entity in a single field, like "street;zip;city".
One can create a EnhancedUserType to do that. In some ...
0
votes
2answers
231 views
Custom non-primitive type in Entity Framework code-first 4.1
I have this custom type:
public struct PasswordString
{
private string value;
public PasswordString(string value)
{
this.value = MD5.CalculateMD5Hash(value);
}
public ...
0
votes
1answer
126 views
control is not refresh when custom type property is changed
I made a custom type for gradient colors. I have no problem at design time, but when one of the properties of the custom type is changed at run time, the control has no react on the changes. here is ...
0
votes
0answers
159 views
Custom Type? Property Grid Displayed
I have a new control I'm making. It needs to function similar to that of a menu bar. I want users to be able to just click on a property within the object and click on the buttons. Here is a ...
0
votes
2answers
414 views
Custom data type as parameter in WebService
I'm writing a WebService in .NET and use a custom type with no public properties. It looks like this:
It is similar to the built-in type Guid but with special validation rules for MAC addresses. The ...