
prompto.csharp.CSharpCharacterLiteral Maven / Gradle / Ivy
package prompto.csharp;
public class CSharpCharacterLiteral extends CSharpLiteral {
char value;
public CSharpCharacterLiteral(String text) {
super(text);
value = text.charAt(1);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy